# HG changeset patch # User Merten Sach # Date 1318855740 -7200 # Node ID ecc95d6a413dd2513a260751c81eff3152bcfd2f # Parent 412574e3da5ec3cd68a06890d12843e1b4f80a0c fixed free without allocation diff -r 412574e3da5e -r ecc95d6a413d SSR_PluginFns.c --- a/SSR_PluginFns.c Wed Sep 28 13:33:37 2011 +0200 +++ b/SSR_PluginFns.c Mon Oct 17 14:49:00 2011 +0200 @@ -141,7 +141,8 @@ handleDissipate( VirtProcr *requestingPr, SSRSemEnv *semEnv ) { //free any semantic data allocated to the virt procr - VMS__free( requestingPr->semanticData ); + if(requestingPr->semanticData) + VMS__free( requestingPr->semanticData ); //Now, call VMS to free_all AppVP state -- stack and so on VMS__dissipate_procr( requestingPr );