# HG changeset patch # User Me # Date 1283355288 25200 # Node ID 7fd2b56b5694fdda3aa6f8ce9355fce604323ae5 # Parent 833c981134dd1c88c784e0668672129a19aefd92 Bugfix: order of free when done with request in request handler diff -r 833c981134dd -r 7fd2b56b5694 VMSHW_PluginFns.c --- a/VMSHW_PluginFns.c Mon Aug 09 02:29:31 2010 -0700 +++ b/VMSHW_PluginFns.c Wed Sep 01 08:34:48 2010 -0700 @@ -85,8 +85,7 @@ //Free VMS portion of request, no matter what -- sem request data // struc instances may still be around.. VMS__free_request doesn't // affect the semantic request that was carried by it - VMS__free_request( req ); - req = VMS__take_top_request_from( requestingPr ); + req = VMS__free_top_and_give_next_request_from( requestingPr ); } //while( req != NULL ) }