Skip to content
Snippets Groups Projects
Commit 289997a0 authored by James David Berry's avatar James David Berry
Browse files

Fix bugs 19816, 19817, 19818; patch by Zeid Derhally, Metrowerks

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174948 13f79535-47bb-0310-9956-ffa450edef68
parent 63af3463
No related branches found
No related tags found
No related merge requests found
...@@ -100,13 +100,13 @@ ...@@ -100,13 +100,13 @@
// unnecessary transcoding. // unnecessary transcoding.
// If your compiler does not support it, don't define this. // If your compiler does not support it, don't define this.
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// #define XML_LSTRSUPPORT #define XML_LSTRSUPPORT
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Indicate that we support C++ namespace // Indicate that we support C++ namespace
// Do not define it if the compile cannot handle C++ namespace // Do not define it if the compile cannot handle C++ namespace
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// #define XERCES_HAS_CPP_NAMESPACE #define XERCES_HAS_CPP_NAMESPACE
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Define our version of the XML character // Define our version of the XML character
......
...@@ -71,6 +71,12 @@ ...@@ -71,6 +71,12 @@
#include "Win32MsgLoader.hpp" #include "Win32MsgLoader.hpp"
// Function prototypes
BOOL APIENTRY DllMain(HINSTANCE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved);
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
// Public Constructors and Destructor // Public Constructors and Destructor
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
......
...@@ -875,7 +875,15 @@ char* Win32LCPTranscoder::transcode(const XMLCh* const toTranscode) ...@@ -875,7 +875,15 @@ char* Win32LCPTranscoder::transcode(const XMLCh* const toTranscode)
if (*toTranscode) if (*toTranscode)
{ {
// Calc the needed size // Calc the needed size
const unsigned int neededLen = ::wcstombs(0, toTranscode, 0); unsigned int neededLen;
#if defined(XML_METROWERKS)
const unsigned int srcLen = ::wcslen(toTranscode);
neededLen = ::wcsmbslen(toTranscode, srcLen);
#else
neededLen = ::wcstombs(0, toTranscode, 0);
#endif
if (neededLen == (unsigned int)-1) if (neededLen == (unsigned int)-1)
return 0; return 0;
......
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