Changed #172 XML floating point serialization not using neutral culture

This commit is contained in:
kervala 2014-08-17 16:05:51 +02:00
parent ffc821f641
commit a7bac6f67f

View file

@ -128,6 +128,10 @@ CIXml::~CIXml ()
{ {
// Release // Release
release (); release ();
#ifdef USE_LOCALE_ATOF
if (_Locale) _free_locale((_locale_t)_Locale);
#endif
} }
// *************************************************************************** // ***************************************************************************
@ -154,10 +158,6 @@ void CIXml::release ()
_ErrorString = ""; _ErrorString = "";
resetPtrTable(); resetPtrTable();
#ifdef USE_LOCALE_ATOF
if (_Locale) _free_locale((_locale_t)_Locale);
#endif
} }
// *************************************************************************** // ***************************************************************************