tng 2003/02/05 10:27:34
Modified: c/src/xercesc/util/Platforms/Linux LinuxPlatformUtils.cpp
Log:
[Bug 13437] Incorrect memory management in LinuxPlatformUtils.cpp. Fixed by Adam
Zell.
Revision Changes Path
1.11 +4 -1
xml-xerces/c/src/xercesc/util/Platforms/Linux/LinuxPlatformUtils.cpp
Index: LinuxPlatformUtils.cpp
===================================================================
RCS file:
/home/cvs/xml-xerces/c/src/xercesc/util/Platforms/Linux/LinuxPlatformUtils.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- LinuxPlatformUtils.cpp 2 Dec 2002 19:16:46 -0000 1.10
+++ LinuxPlatformUtils.cpp 5 Feb 2003 18:27:34 -0000 1.11
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.11 2003/02/05 18:27:34 tng
+ * [Bug 13437] Incorrect memory management in LinuxPlatformUtils.cpp. Fixed by
Adam Zell.
+ *
* Revision 1.10 2002/12/02 19:16:46 tng
* [Bug 14723] Memory leak in atomicOpsMutex. Patch from Adam Zell.
*
@@ -678,7 +681,7 @@
ThrowXML(XMLPlatformUtilsException,
XMLExcepts::Mutex_CouldNotDestroy);
}
- delete mtxHandle;
+ delete (pthread_mutex_t*) mtxHandle;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]