|
From: Chris B. <buc...@us...> - 2012-07-02 22:01:59
|
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 3e43d478b9bb3d50cc12454f5661f40b0c14438f (commit)
from f42a2cc20966b857f9cd2343ac11eb8292421620 (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 3e43d478b9bb3d50cc12454f5661f40b0c14438f
Author: buccella <buc...@li...>
Date: Mon Jul 2 18:02:28 2012 -0400
[ 3539563 ] Memory leak in indCIMXMLHandler when Reliable Inds Enabled
-----------------------------------------------------------------------
Summary of changes:
diff --git a/ChangeLog b/ChangeLog
index ec302d4..1523d72 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2012-07-02 Chris Buccella <buc...@li...>
+ * indCIMXMLHandler.c:
+ [ 3539563 ] Memory leak in indCIMXMLHandler when Reliable Inds Enabled
+
* providerDrv.c:
[ 3539557 ] Memory leak in providerDrv with property list
diff --git a/NEWS b/NEWS
index e64d99d..1c7fdcd 100644
--- a/NEWS
+++ b/NEWS
@@ -101,6 +101,7 @@ Bugs fixed:
- 1901737 Memory leak in internalProvider.c
- 3539555 Memory leak in TestInstanceProvider
- 3539557 Memory leak in providerDrv with property list
+- 3539563 Memory leak in indCIMXMLHandler when Reliable Inds Enabled
Changes in 1.3.15
=================
diff --git a/indCIMXMLHandler.c b/indCIMXMLHandler.c
index fc82735..fc2899d 100644
--- a/indCIMXMLHandler.c
+++ b/indCIMXMLHandler.c
@@ -1097,10 +1097,12 @@ IndCIMXMLHandlerInvokeMethod(CMPIMethodMI * mi,
CMPIContext *pctx = native_clone_CMPIContext(ctx);
pthread_create(&t, &tattr, &retryExport, (void *) pctx);
}
- CMRelease(ctxLocal);
}
break;
}
+ if (RIEnabled) {
+ CMRelease(ctxLocal);
+ }
CMRelease(ind);
}
else {
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|