git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16588
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
WC_BSWAP(buf /* _not_ bufPtr */, res)
}
WC_BSWAP(buf /* _not_ bufPtr */, res)
}
- // iconv doesn't seem to set the trailing 0
- buf[res] = 0;
+ // NB: iconv was given only strlen(psz) characters on input, and so
+ // it couldn't convert the trailing zero. Let's do it ourselves
+ // if there's some room left for it in the output buffer.
+ if (res < n)
+ buf[res] = 0;
- // iconv() doesn't set the trailing zero, but moves buf to
- // that position
- buf[0] = 0;
+ // NB: iconv was given only wcslen(psz) characters on input, and so
+ // it couldn't convert the trailing zero. Let's do it ourselves
+ // if there's some room left for it in the output buffer.
+ if (res < n)
+ buf[0] = 0;