X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8fa2cfe2581e2470e7e35abd45134be53afe5465..3aaaf1aaa0dfe514bd778bc11dfa96854952c246:/src/osx/core/strconv_cf.cpp diff --git a/src/osx/core/strconv_cf.cpp b/src/osx/core/strconv_cf.cpp index b4cde0c351..78f6429c2c 100644 --- a/src/osx/core/strconv_cf.cpp +++ b/src/osx/core/strconv_cf.cpp @@ -115,8 +115,7 @@ WXDLLIMPEXP_BASE wxMBConv* new_wxMBConv_cf(wxFontEncoding encoding) dstSize * sizeof(wchar_t), &usedBufLen); - // charsConverted is > 0 iff conversion succeeded - if(charsConverted <= 0) + if(charsConverted < CFStringGetLength(theString)) return wxCONV_FAILED; /* usedBufLen is the number of bytes written, so we divide by @@ -217,8 +216,7 @@ WXDLLIMPEXP_BASE wxMBConv* new_wxMBConv_cf(wxFontEncoding encoding) &usedBufLen ); - // charsConverted is > 0 iff conversion succeeded - if(charsConverted <= 0) + if(charsConverted < CFStringGetLength(theString) ) return wxCONV_FAILED; return usedBufLen;