From: Chris B. <buc...@us...> - 2011-06-21 22:07:45
|
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 295039a9ca3bbfb94734bc8556b7207bb70dceaf (commit) from a99bfd0271f42d1a7ae0bc8f7c7b01d8953de5f0 (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 295039a9ca3bbfb94734bc8556b7207bb70dceaf Author: buccella <buc...@li...> Date: Tue Jun 21 18:07:26 2011 -0400 [ 3324131 ] indCIMXMLHandler may return uninitialized CMPIStatus ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index 47d84ab..d53ec55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2011-06-21 Chris Buccella <buc...@li...> + * indCIMXMLHandler.c: + [ 3324131 ] indCIMXMLHandler may return uninitialized CMPIStatus + * providerDrv.c: [ 3324214 ] Remove dead code from providerDrv:loadProvider() @@ -28,7 +31,7 @@ * Makefile.am [ 3047562 ] [patch] Create bzip2 tarballs on "make dist" (patch by Klaus Kampf) - + 2011-06-01 Chris Buccella <buc...@li...> * interopServerProvider.c: diff --git a/NEWS b/NEWS index 5018ab4..5559822 100644 --- a/NEWS +++ b/NEWS @@ -92,6 +92,7 @@ Bugs Fixed: - 3323422 Unnecessary NULL check in control.c - 3323427 Unnecessary NULL check in httpAdapter - 3324214 Remove dead code from providerDrv:loadProvider() +- 3324131 indCIMXMLHandler may return uninitialized CMPIStatus Changes in 1.3.11 ================= diff --git a/indCIMXMLHandler.c b/indCIMXMLHandler.c index 360ca24..3cfe805 100644 --- a/indCIMXMLHandler.c +++ b/indCIMXMLHandler.c @@ -107,7 +107,7 @@ IndCIMXMLHandlerEnumInstanceNames(CMPIInstanceMI * mi, CMPIContext *ctxLocal; _SFCB_ENTER(TRACE_INDPROVIDER, "IndCIMXMLHandlerEnumInstanceNames"); - if (interOpNameSpace(ref, NULL) != 1) + if (interOpNameSpace(ref, &st) != 1) _SFCB_RETURN(st); ctxLocal = prepareUpcall((CMPIContext *) ctx); @@ -175,7 +175,7 @@ IndCIMXMLHandlerEnumInstances(CMPIInstanceMI * mi, CMPIContext *ctxLocal; _SFCB_ENTER(TRACE_INDPROVIDER, "IndCIMXMLHandlerEnumInstances"); - if (interOpNameSpace(ref, NULL) != 1) + if (interOpNameSpace(ref, &st) != 1) _SFCB_RETURN(st); ctxLocal = prepareUpcall((CMPIContext *) ctx); hooks/post-receive -- SFCB - Small Footprint CIM Broker |