Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv21639
Modified Files:
providerDrv.c
Log Message:
[3497096] double free during stopProc
Index: providerDrv.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/providerDrv.c,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -d -r1.106 -r1.107
--- providerDrv.c 5 Mar 2012 18:13:27 -0000 1.106
+++ providerDrv.c 5 Mar 2012 19:11:36 -0000 1.107
@@ -367,11 +367,11 @@
mlogf(M_INFO,M_SHOW,"--- stopped %s %d\n",processName,getpid());
ctx->ft->release(ctx);
- uninit_sfcBroker();
- uninitProvProcCtl();
- uninitSocketPairs();
- sunsetControl();
- uninitGarbageCollector();
+ //uninit_sfcBroker(); /* 3497096 */
+ //uninitProvProcCtl();
+ //uninitSocketPairs();
+ //sunsetControl();
+ //uninitGarbageCollector();
exit(0);
}
|