Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv9458
Modified Files:
ChangeLog NEWS providerDrv.c
Log Message:
3428806 type=null in authorizeFilter call
Index: NEWS
===================================================================
RCS file: /cvsroot/sblim/sfcb/NEWS,v
retrieving revision 1.619
retrieving revision 1.620
diff -u -d -r1.619 -r1.620
--- NEWS 13 Oct 2011 19:46:40 -0000 1.619
+++ NEWS 26 Oct 2011 17:15:11 -0000 1.620
@@ -7,6 +7,7 @@
- 3416055 SIGSEGV sometimes does not print provider name
- 3416167 CIM_InstDeletion not in class repo by default
- 3422650 Associators calls to IndicationService depends on cmpi-base
+- 3428806 type=null in authorizeFilter call
Changes in 1.3.13
=================
Index: providerDrv.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/providerDrv.c,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -d -r1.103 -r1.104
--- providerDrv.c 30 Sep 2011 17:14:05 -0000 1.103
+++ providerDrv.c 26 Oct 2011 17:15:11 -0000 1.104
@@ -2146,7 +2146,7 @@
CMPIResult *result = native_new_CMPIResult(0,1,NULL);
CMPIFlags flgs=0;
int makeActive=0;
- char *type = NULL;
+ char *type=(char*)req->type.data;
ctx->ft->addEntry(ctx,CMPIInvocationFlags,(CMPIValue*)&flgs,CMPI_uint32);
ctx->ft->addEntry(ctx,CMPIPrincipal,(CMPIValue*)req->principal.data,CMPI_chars);
@@ -2161,7 +2161,6 @@
if (se==NULL) {
char *query=(char*)req->query.data;
char *lang=(char*)req->language.data;
- type=(char*)req->type.data;
char *sns=(char*)req->sns.data;
se=(NativeSelectExp*)NewCMPISelectExp(query,lang,sns,NULL,&rci);
Index: ChangeLog
===================================================================
RCS file: /cvsroot/sblim/sfcb/ChangeLog,v
retrieving revision 1.695
retrieving revision 1.696
diff -u -d -r1.695 -r1.696
--- ChangeLog 13 Oct 2011 19:46:40 -0000 1.695
+++ ChangeLog 26 Oct 2011 17:15:11 -0000 1.696
@@ -1,3 +1,8 @@
+2011-10-26 Michael Chase-Salerno <br...@li...>
+
+ * providerDrv.c:
+ [ 3428806 ] type=null in authorizeFilter call
+
2011-10-13 Chris Buccella <buc...@li...>
* indication.mof:
|