From: Chris B. <buc...@us...> - 2011-09-27 15:17:39
|
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 066e76dd6fdc1a0864c6aabf99d46d6c79c0c6d0 (commit) from cef7763a00d57524e2e518efdf8ee7a3290ca84d (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 066e76dd6fdc1a0864c6aabf99d46d6c79c0c6d0 Author: buccella <buc...@li...> Date: Tue Sep 27 11:17:36 2011 -0400 [ 3414236 ] updateMethodParamTypes uses incorrect qualifier count ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index 698ff67..165f9bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-09-27 Chris Buccella <buc...@li...> + + * cimXmlOps.y: + [ 3414236 ] updateMethodParamTypes uses incorrect qualifier count + 2011-09-22 Narasimha Sharoff <nsh...@us...> * providerDrv.c, result.c, support.c diff --git a/NEWS b/NEWS index 1446b58..571a35c 100644 --- a/NEWS +++ b/NEWS @@ -81,9 +81,10 @@ Changes in 1.3.13 Bugs Fixed: -- [ 3386391 ] HOST_NAME_MAX undefined -- [ 3393324 ] sfcb process abort in IndCIMXMLHandlerInvokeMethod -- [ 3398337 ] Namespaces of filter and handler for IndSub not checked +- 3386391 HOST_NAME_MAX undefined +- 3393324 sfcb process abort in IndCIMXMLHandlerInvokeMethod +- 3398337 Namespaces of filter and handler for IndSub not checked +- 3414236 updateMethodParamTypes uses incorrect qualifier count Changes in 1.3.12 ================= diff --git a/cimXmlOps.y b/cimXmlOps.y index 21699b3..4d79674 100644 --- a/cimXmlOps.y +++ b/cimXmlOps.y @@ -1478,10 +1478,10 @@ updateMethodParamTypes(RequestHdr * hdr) if (param && (ptok->type & CMPI_instance)) { int isEI = 0; int qcount = - ClClassGetMethParmQualifierCount(cl, meth, i); + ClClassGetMethParmQualifierCount(cl, meth, p); for (; qcount > 0; qcount--) { char *qname; - ClClassGetMethParamQualifierAt(cl, param, qcount, NULL, &qname); + ClClassGetMethParamQualifierAt(cl, param, (qcount - 1), NULL, &qname); if (strcmp(qname, "EmbeddedInstance") == 0) { // fprintf(stderr, " is EmbeddedInstance\n"); isEI = 1; hooks/post-receive -- SFCB - Small Footprint CIM Broker |