From: Chris B. <buc...@us...> - 2011-06-22 19:55:20
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv29783 Modified Files: brokerUpc.c ChangeLog NEWS contributions.txt Log Message: [ 3324578 ] getInstance() up call does not close provider context Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.599 retrieving revision 1.600 diff -u -d -r1.599 -r1.600 --- NEWS 21 Jun 2011 22:53:50 -0000 1.599 +++ NEWS 22 Jun 2011 19:55:18 -0000 1.600 @@ -27,6 +27,7 @@ - 3324247 Unnecessary NULL check in providerDrv - 3324255 Unnecessary NULL check in __cleanup_mt() - 3324265 _sfcb_trace may deref NULL pointers +- 3324578 getInstance() up call does not close provider context Changes in 1.3.11 ================= Index: brokerUpc.c =================================================================== RCS file: /cvsroot/sblim/sfcb/brokerUpc.c,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- brokerUpc.c 11 Feb 2011 23:08:53 -0000 1.33 +++ brokerUpc.c 22 Jun 2011 19:55:18 -0000 1.34 @@ -528,6 +528,7 @@ if (st.rc==0) inst=CMGetArrayElementAt(r, 0, NULL).value.inst; if (sreq) free(sreq); + closeProviderContext(&binCtx); return inst; } } Index: contributions.txt =================================================================== RCS file: /cvsroot/sblim/sfcb/contributions.txt,v retrieving revision 1.66 retrieving revision 1.67 diff -u -d -r1.66 -r1.67 --- contributions.txt 10 Jun 2011 19:58:47 -0000 1.66 +++ contributions.txt 22 Jun 2011 19:55:18 -0000 1.67 @@ -188,3 +188,7 @@ -------------- 11/17/2010 [ 3109469 ] Potential Buffer Overflow in msgqueue.c:localConnectServer() 06/10/2010 [ 3165732 ] Add ability for client library to specify configuration file + +Santosh Bidaralli, Dell +----------------------- +06/22/2011 [ 3324578 ] getInstance() up call does not close provider context Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.673 retrieving revision 1.674 diff -u -d -r1.673 -r1.674 --- ChangeLog 21 Jun 2011 22:53:50 -0000 1.673 +++ ChangeLog 22 Jun 2011 19:55:18 -0000 1.674 @@ -1,3 +1,8 @@ +2011-06-22 Chris Buccella <buc...@li...> + + * brokerUpc.c: + [ 3324578 ] getInstance() up call does not close provider context + 2011-06-21 Chris Buccella <buc...@li...> * trace.c: |