From: Chris B. <buc...@us...> - 2011-06-21 16:07:34
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv14052 Modified Files: control.c ChangeLog NEWS Log Message: [ 3323422 ] Unnecessary NULL check in control.c Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.589 retrieving revision 1.590 diff -u -d -r1.589 -r1.590 --- NEWS 10 Jun 2011 19:58:47 -0000 1.589 +++ NEWS 21 Jun 2011 16:07:32 -0000 1.590 @@ -17,6 +17,7 @@ - 3047562 [patch] Create bzip2 tarballs on "make dist" - 3314762 Memory leak in method invoke using SFCB local interface - 3165732 Add ability for client library to specify configuration file +- 3323422 Unnecessary NULL check in control.c Changes in 1.3.11 ================= Index: control.c =================================================================== RCS file: /cvsroot/sblim/sfcb/control.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- control.c 10 Jun 2011 19:58:47 -0000 1.37 +++ control.c 21 Jun 2011 16:07:32 -0000 1.38 @@ -222,10 +222,7 @@ } if (stmt) free(stmt); - - if (in) { - fclose(in); - } + fclose(in); if (err) { mlogf(M_INFO,M_SHOW,"--- Broker terminated because of previous error(s)\n"); Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.663 retrieving revision 1.664 diff -u -d -r1.663 -r1.664 --- ChangeLog 10 Jun 2011 19:58:47 -0000 1.663 +++ ChangeLog 21 Jun 2011 16:07:32 -0000 1.664 @@ -1,3 +1,8 @@ +2011-06-21 Chris Buccella <buc...@li...> + + * control.c: + [ 3323422 ] Unnecessary NULL check in control.c + 2011-06-10 Chris Buccella <buc...@li...> * cimcClientSfcbLocal.c: |