From: Chris B. <buc...@us...> - 2011-04-28 21:53:00
|
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 6a399e90cf5647165b89436ed5e9f8c9b95027ee (commit) from 62a8430f27f3557979127f1d0c2b7e618bb2c85a (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 6a399e90cf5647165b89436ed5e9f8c9b95027ee Author: buccella <buc...@li...> Date: Thu Apr 28 17:53:07 2011 -0400 [ 3202466 ] Single item on method param of array type rejected via Local ----------------------------------------------------------------------- Summary of changes: diff --git a/ChangeLog b/ChangeLog index 696b6c4..4d84728 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-04-28 Chris Buccella <buc...@li...> + * cimcClientSfcbLocal.c: + [ 3202466 ] Single item on method param of array type rejected via Local + (patch by Chris Poblete) + * queryOperation.c: [ 3291646 ] Unused var in __NullEvaluate diff --git a/NEWS b/NEWS index 0a5da37..d2b9025 100644 --- a/NEWS +++ b/NEWS @@ -4,9 +4,9 @@ Changes in 1.4.2 New features: Bugs fixed: -- 3261868 Enum CQL filter on NULL cause incorrect rsp -- 3213591 Local intf client abort abnormally on enum filter syntax err -- 3291646 Unused var in __NullEvaluate + +Everything in 1.3.12, plus: + Changes in 1.4.1 ================ @@ -64,6 +64,16 @@ Everything in 1.3.10, plus: - 3104761 cimRsRequest.h missing from make-dist tarball - 3107553 Remove Large Volume Support +Changes in 1.3.12 +================= + +Bugs Fixed: + +- 3261868 Enum CQL filter on NULL cause incorrect rsp +- 3213591 Local intf client abort abnormally on enum filter syntax err +- 3291646 Unused var in __NullEvaluate +- 3202466 Single item on method param of array type rejected via Local + Changes in 1.3.11 ================= diff --git a/cimcClientSfcbLocal.c b/cimcClientSfcbLocal.c index 4862f46..a3bedaf 100644 --- a/cimcClientSfcbLocal.c +++ b/cimcClientSfcbLocal.c @@ -1214,7 +1214,7 @@ static CMPIValue convertFromStringValue(CMPIValue strcval, // expected incoming type is either string or string array // incoming array type must match expected array type - if ((xtype & CMPI_ARRAY) ^ (strctype & CMPI_ARRAY)) { + if (!(xtype & CMPI_ARRAY) && (strctype & CMPI_ARRAY)) { if (prc) CMSetStatus(prc, CMPI_RC_ERR_INVALID_PARAMETER); return newcval; } diff --git a/contributions.txt b/contributions.txt index 7ac411a..a06e318 100644 --- a/contributions.txt +++ b/contributions.txt @@ -181,7 +181,8 @@ Chris Poblete, Dell 11/08/2010 [ 3101155 ] Failed to load provider libraries due to symbol conflicts 11/09/2010 [ 3101148 ] SfcbLocal method parameter type conversion and validation 11/10/2010 [ 3101154 ] Daemon clients failed SfcbLocal connect due to permission -03/09/2010 [ 3202420 ] CDATA value in a string property is improperly XML escaped +03/09/2011 [ 3202420 ] CDATA value in a string property is improperly XML escaped +04/28/2011 [ 3202466 ] Single item on method param of array type rejected via Local Josef Moellers -------------- hooks/post-receive -- SFCB - Small Footprint CIM Broker |