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 09c667299f183778a87dd0fde8b48d3e7af0e366 (commit)
from a113b68040c7627af055bf744c3725a22a7dcd55 (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 09c667299f183778a87dd0fde8b48d3e7af0e366
Author: buccella <buc...@li...>
Date: Tue Jun 21 12:09:54 2011 -0400
[ 3323422 ] Unnecessary NULL check in control.c
-----------------------------------------------------------------------
Summary of changes:
diff --git a/ChangeLog b/ChangeLog
index 4f87f68..55e5974 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
diff --git a/NEWS b/NEWS
index 9384213..77fe1ca 100644
--- a/NEWS
+++ b/NEWS
@@ -89,6 +89,7 @@ Bugs Fixed:
- 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
=================
diff --git a/control.c b/control.c
index e39a246..e31d3fb 100644
--- a/control.c
+++ b/control.c
@@ -230,9 +230,7 @@ setupControl(char *fn)
if (stmt)
free(stmt);
- if (in) {
- fclose(in);
- }
+ fclose(in);
if (err) {
mlogf(M_INFO, M_SHOW,
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|