mirror of
https://github.com/RPCS3/pugixml.git
synced 2026-01-31 01:25:21 +01:00
Fix wchar mode
This commit is contained in:
@@ -4487,14 +4487,14 @@ PUGI__NS_BEGIN
|
||||
{
|
||||
#ifdef PUGIXML_WCHAR_MODE
|
||||
char_t wbuf[128];
|
||||
assert(strlength(buf) < sizeof(wbuf) / sizeof(wbuf[0]));
|
||||
assert(strlen(buf) < sizeof(wbuf) / sizeof(wbuf[0]));
|
||||
|
||||
size_t offset = 0;
|
||||
for (; buf[offset]; ++offset) wbuf[offset] = buf[offset];
|
||||
|
||||
return strcpy_insitu(dest, header, header_mask, wbuf, offset);
|
||||
#else
|
||||
return strcpy_insitu(dest, header, header_mask, buf, strlength(buf));
|
||||
return strcpy_insitu(dest, header, header_mask, buf, strlen(buf));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user