Update of /cvsroot/sblim/sfcb
In directory vz-cvs-3.sog:/tmp/cvs-serv5384
Modified Files:
indCIMXMLHandler.c ChangeLog NEWS
Log Message:
[ 3539563 ] Memory leak in indCIMXMLHandler when Reliable Inds Enabled
Index: NEWS
===================================================================
RCS file: /cvsroot/sblim/sfcb/NEWS,v
retrieving revision 1.702
retrieving revision 1.703
diff -u -d -r1.702 -r1.703
--- NEWS 3 Jul 2012 01:57:48 -0000 1.702
+++ NEWS 3 Jul 2012 02:00:22 -0000 1.703
@@ -4,6 +4,7 @@
Bugs fixed:
- 3539569 Leaks in interopProvider
+- 3539563 Memory leak in indCIMXMLHandler when Reliable Inds Enabled
Changes in 1.3.15
=================
Index: indCIMXMLHandler.c
===================================================================
RCS file: /cvsroot/sblim/sfcb/indCIMXMLHandler.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- indCIMXMLHandler.c 23 May 2012 21:58:55 -0000 1.54
+++ indCIMXMLHandler.c 3 Jul 2012 02:00:22 -0000 1.55
@@ -1003,10 +1003,12 @@
CMPIContext * pctx = native_clone_CMPIContext(ctx);
pthread_create(&t, &tattr,&retryExport,(void *) pctx);
}
- CMRelease(ctxLocal);
}
break;
}
+ if (RIEnabled) {
+ CMRelease(ctxLocal);
+ }
CMRelease(ind);
}
else {
Index: ChangeLog
===================================================================
RCS file: /cvsroot/sblim/sfcb/ChangeLog,v
retrieving revision 1.786
retrieving revision 1.787
diff -u -d -r1.786 -r1.787
--- ChangeLog 3 Jul 2012 01:57:48 -0000 1.786
+++ ChangeLog 3 Jul 2012 02:00:22 -0000 1.787
@@ -1,5 +1,8 @@
2012-07-02 Chris Buccella <buc...@li...>
+ * indCIMXMLHandler.c:
+ [ 3539563 ] Memory leak in indCIMXMLHandler when Reliable Inds Enabled
+
* interopProvider.c:
[ 3539569 ] Leaks in interopProvider
|