changeset 7:7fd2b56b5694 SingleMaster

Bugfix: order of free when done with request in request handler
author Me
date Wed, 01 Sep 2010 08:34:48 -0700
parents 833c981134dd
children 9172ea309065
files VMSHW_PluginFns.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line diff
     1.1 --- a/VMSHW_PluginFns.c	Mon Aug 09 02:29:31 2010 -0700
     1.2 +++ b/VMSHW_PluginFns.c	Wed Sep 01 08:34:48 2010 -0700
     1.3 @@ -85,8 +85,7 @@
     1.4           //Free VMS portion of request, no matter what -- sem request data
     1.5           // struc instances may still be around..  VMS__free_request doesn't
     1.6           // affect the semantic request that was carried by it
     1.7 -      VMS__free_request( req );      
     1.8 -      req = VMS__take_top_request_from( requestingPr );
     1.9 +      req = VMS__free_top_and_give_next_request_from( requestingPr );
    1.10      } //while( req != NULL )
    1.11   }
    1.12