From: Chris B. <buc...@us...> - 2011-06-21 22:52:38
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 5129f32304b98fcd05d66fb21be04f7d5da20359 (commit) from 797169a9f23e84224e2fcfced29189396791c576 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 5129f32304b98fcd05d66fb21be04f7d5da20359 Author: buccella <buc...@li...> Date: Tue Jun 21 18:52:23 2011 -0400 [ 3324255 Unnecessary NULL check in __cleanup_mt() ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index 592256c..b7d4125 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2011-06-21 Chris Buccella <buc...@li...> + * support.c: + [ 3324255 ] Unnecessary NULL check in __cleanup_mt() + * objectpath.c: [ 3324198 ] getObjectPath() may deref a NULL pointer diff --git a/NEWS b/NEWS index 99466e4..e38a379 100644 --- a/NEWS +++ b/NEWS @@ -96,6 +96,8 @@ Bugs Fixed: - 3324168 gatherNameSpacesData() may closedir() a NULL pointer - 3324192 Erroneous condition in loop in objectImpl:locateParameter() - 3324198 getObjectPath() may deref a NULL pointer +- 3324247 Unnecessary NULL check in providerDrv +- 3324255 Unnecessary NULL check in __cleanup_mt() Changes in 1.3.11 ================= diff --git a/support.c b/support.c index 68c6dc0..801242f 100644 --- a/support.c +++ b/support.c @@ -416,8 +416,8 @@ __cleanup_mt(void *ptr) free(mt->hc.memObjs); if (mt->hc.memEncObjs) free(mt->hc.memEncObjs); - if (mt) - free(mt); + + free(mt); } _SFCB_EXIT(); } hooks/post-receive -- SFCB - Small Footprint CIM Broker |