Skip to content
Snippets Groups Projects
Commit 68529873 authored by Tinny Ng's avatar Tinny Ng
Browse files

Undo [Bug 7763] in case users use ICU outside the parser.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174187 13f79535-47bb-0310-9956-ffa450edef68
parent f36d89ca
No related branches found
No related tags found
No related merge requests found
...@@ -208,13 +208,6 @@ ...@@ -208,13 +208,6 @@
</td> </td>
</tr> </tr>
<tr>
<td>2002-08-14</td>
<td>Maxim Volkonovsky</td>
<td>[Bug 7763] Final memory cleanup for ICU transcoder.
</td>
</tr>
<tr> <tr>
<td>2002-08-13</td> <td>2002-08-13</td>
<td>PeiYong Zhang</td> <td>PeiYong Zhang</td>
......
...@@ -170,10 +170,16 @@ ICUTransService::ICUTransService() ...@@ -170,10 +170,16 @@ ICUTransService::ICUTransService()
ICUTransService::~ICUTransService() ICUTransService::~ICUTransService()
{ {
/*
* commented out the following clean up code
* in case users use ICU outside of the parser
* if we clean up here, users' code may crash
*
#if (U_ICU_VERSION_MAJOR_NUM >= 2) #if (U_ICU_VERSION_MAJOR_NUM >= 2)
// release all lasily allocated data // release all lasily allocated data
u_cleanup(); u_cleanup();
#endif #endif
*/
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment