|
From: Michael Chase-S. <mc...@us...> - 2012-12-06 00:29:48
|
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 e6db110f58fb78ce557efbcec3ae03b61b89977c (commit)
from 9ffd4d991227d3c7e80af786f49f3ccf583404b9 (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 e6db110f58fb78ce557efbcec3ae03b61b89977c
Author: Michael Chase-Salerno <br...@li...>
Date: Wed Dec 5 19:28:55 2012 -0500
- 3593006 trace shared mem leak
-----------------------------------------------------------------------
Summary of changes:
diff --git a/NEWS b/NEWS
index b9adfdc..327866c 100644
--- a/NEWS
+++ b/NEWS
@@ -133,6 +133,7 @@ Bugs fixed:
- 3588557 Object path in deliverIndication can remain resident
- 3452703 Default http uid used causes unexpected behavior
- 3381209 Memory leak inside getClass() used by invokeMethod()
+- 3593006 trace shared mem leak
Changes in 1.3.15
=================
diff --git a/cimcClientSfcbLocal.c b/cimcClientSfcbLocal.c
index 77e1045..1fd49db 100644
--- a/cimcClientSfcbLocal.c
+++ b/cimcClientSfcbLocal.c
@@ -2081,6 +2081,12 @@ newDateTimeFromChars(ClientEnv *ce, const char *utcTime, CMPIStatus *rc)
return NewCMPIDateTimeFromChars(utcTime, rc);
}
+void _Cleanup_SfcbLocal_Env(void)
+{
+printf("MCS stop\n");
+ _SFCB_TRACE_STOP();
+}
+
ClientEnv *
_Create_SfcbLocal_Env(char *id, unsigned int options, int *rc, char **msg)
{
@@ -2121,6 +2127,7 @@ _Create_SfcbLocal_Env(char *id, unsigned int options, int *rc, char **msg)
}
_SFCB_TRACE_START(tracelevel, tracemask);
}
+ atexit(_Cleanup_SfcbLocal_Env);
return env;
}
hooks/post-receive
--
SFCB - Small Footprint CIM Broker
|