From: Michael Chase-S. <mc...@us...> - 2011-05-16 22:14:10
|
Update of /cvsroot/sblim/sfcb In directory vz-cvs-3.sog:/tmp/cvs-serv20359 Modified Files: ChangeLog NEWS indCIMXMLHandler.c Log Message: [ 3296541 ] CIM_IndicationSubscription corrupts after delilvery fails Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.583 retrieving revision 1.584 diff -u -d -r1.583 -r1.584 --- NEWS 10 May 2011 23:01:33 -0000 1.583 +++ NEWS 16 May 2011 22:14:08 -0000 1.584 @@ -11,6 +11,7 @@ - 3291646 Unused var in __NullEvaluate - 3202466 Single item on method param of array type rejected via Local - 3287789 interopServerProvider not conservative when answering reqs +- 3296541 CIM_IndicationSubscription corrupts after delilvery fails Changes in 1.3.11 ================= Index: indCIMXMLHandler.c =================================================================== RCS file: /cvsroot/sblim/sfcb/indCIMXMLHandler.c,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- indCIMXMLHandler.c 30 Mar 2011 19:32:41 -0000 1.34 +++ indCIMXMLHandler.c 16 May 2011 22:14:08 -0000 1.35 @@ -645,9 +645,9 @@ if (sfc == 0 ) { // if the time isn't set, this is the first failure sfc=tv.tv_sec; - cur=cur->next; CMSetProperty(sub,"DeliveryFailureTime",&sfc,CMPI_uint64); CBModifyInstance(_broker, ctxLocal, cur->sub, sub, NULL); + cur=cur->next; } else if (sfc+rtint < tv.tv_sec) { // Exceeded subscription removal threshold, if action is: // 2, delete the sub; 3, disable the sub; otherwise, nothing Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.656 retrieving revision 1.657 diff -u -d -r1.656 -r1.657 --- ChangeLog 10 May 2011 23:01:33 -0000 1.656 +++ ChangeLog 16 May 2011 22:14:08 -0000 1.657 @@ -1,3 +1,8 @@ +2011-05-16 Michael Chase-Salerno <br...@li...> + + * indCIMXMLHandler.c + [ 3296541 ] CIM_IndicationSubscription corrupts after delilvery fails + 2011-05-10 Michael Chase-Salerno <br...@li...> * interopServerProvider.c |