From: Chris B. <buc...@us...> - 2011-08-23 00:11:34
|
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 1bb97334baac7da10fcea7d3667aea9d6df9b257 (commit) from 3146c89ef17df96cd3e4938a23216334cef7811b (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 1bb97334baac7da10fcea7d3667aea9d6df9b257 Author: buccella <buc...@li...> Date: Mon Aug 22 20:11:04 2011 -0400 [ 3393324 ] sfcb process abort in IndCIMXMLHandlerInvokeMethod ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index 429e3f9..175779f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-22 Chris Buccella <buc...@li...> + + * indCIMXMLHandler.c: + [ 3393324 ] sfcb process abort in IndCIMXMLHandlerInvokeMethod + 2011-08-04 Chris Buccella <buc...@li...> * cimXmlGen.c: diff --git a/NEWS b/NEWS index c4f3be4..36ffda4 100644 --- a/NEWS +++ b/NEWS @@ -79,6 +79,7 @@ Changes in 1.3.13 Bugs Fixed: - [ 3386391 ] HOST_NAME_MAX undefined +- [ 3393324 ] sfcb process abort in IndCIMXMLHandlerInvokeMethod Changes in 1.3.12 ================= diff --git a/indCIMXMLHandler.c b/indCIMXMLHandler.c index f25366f..8a06833 100644 --- a/indCIMXMLHandler.c +++ b/indCIMXMLHandler.c @@ -983,7 +983,7 @@ IndCIMXMLHandlerInvokeMethod(CMPIMethodMI * mi, // Get the stub from the handler CMPIString *context = CMGetProperty(hdlr, "SequenceContext", &st).value.string; // and add the sfcb start time - char *cstr=malloc( (strlen(context->ft->getCharPtr(context,NULL)) + strlen(sfcBrokerStart)) * sizeof(char)); + char *cstr=malloc( (strlen(context->ft->getCharPtr(context,NULL)) + strlen(sfcBrokerStart) + 1) * sizeof(char)); sprintf(cstr,"%s%s",context->ft->getCharPtr(context,NULL),sfcBrokerStart); context = sfcb_native_new_CMPIString(cstr, NULL, 0); // and put it in the indication hooks/post-receive -- SFCB - Small Footprint CIM Broker |