From: Chris B. <buc...@us...> - 2011-09-30 17:14:08
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv22525 Modified Files: providerDrv.c ChangeLog NEWS contributions.txt Log Message: [ 3416055 ] SIGSEGV sometimes does not print provider name Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.616 retrieving revision 1.617 diff -u -d -r1.616 -r1.617 --- NEWS 30 Sep 2011 16:11:36 -0000 1.616 +++ NEWS 30 Sep 2011 17:14:05 -0000 1.617 @@ -4,6 +4,7 @@ Bugs fixed: - 3414700 assocClass ignored for assoc upcalls +- 3416055 SIGSEGV sometimes does not print provider name Changes in 1.3.13 ================= Index: providerDrv.c =================================================================== RCS file: /cvsroot/sblim/sfcb/providerDrv.c,v retrieving revision 1.102 retrieving revision 1.103 diff -u -d -r1.102 -r1.103 --- providerDrv.c 29 Sep 2011 07:29:12 -0000 1.102 +++ providerDrv.c 30 Sep 2011 17:14:05 -0000 1.103 @@ -746,7 +746,7 @@ _SFCB_TRACE(1,("--- Forked started for %s %d %d-%lu", info->providerName, currentProc,providerSockets.receive, getInode(providerSockets.receive))); - processName=info->providerName; + processName=strdup(info->providerName); providerProcess=1; info->proc=*proc; info->pid=currentProc; Index: contributions.txt =================================================================== RCS file: /cvsroot/sblim/sfcb/contributions.txt,v retrieving revision 1.68 retrieving revision 1.69 diff -u -d -r1.68 -r1.69 --- contributions.txt 22 Jun 2011 20:50:33 -0000 1.68 +++ contributions.txt 30 Sep 2011 17:14:05 -0000 1.69 @@ -113,6 +113,7 @@ 05/27/2010 [ 2984485 ] Possible access to freed memory in cimslpSLP.c 06/30/2010 [ 2968599 ] Wrong trace msg for invokeMethod (local interface) 06/09/2011 [ 3047562 ] [patch] Create bzip2 tarballs on "make dist" +09/30/2011 [ 3416055 ] SIGSEGV sometimes does not print provider name Mike Brasher, Inova ------------------- Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.692 retrieving revision 1.693 diff -u -d -r1.692 -r1.693 --- ChangeLog 30 Sep 2011 16:11:36 -0000 1.692 +++ ChangeLog 30 Sep 2011 17:14:05 -0000 1.693 @@ -1,5 +1,9 @@ 2011-09-30 Chris Buccella <buc...@li...> + * providerDrv.c: + [ 3416055 ] SIGSEGV sometimes does not print provider name + (patch by Klaus Kaempf) + * brokerUpc.c: [ 3414700 ] assocClass ignored for assoc upcalls |