Kaydet (Commit) 33e2f55f authored tarafından David Tardon's avatar David Tardon

WaE: remove unused variable

üst 73dcbdac
...@@ -865,13 +865,13 @@ void SAL_CALL rtl_uString_internConvert( rtl_uString ** newStr, ...@@ -865,13 +865,13 @@ void SAL_CALL rtl_uString_internConvert( rtl_uString ** newStr,
{ {
rtl_uString *pScratch; rtl_uString *pScratch;
rtl_TextToUnicodeConverter hConverter; rtl_TextToUnicodeConverter hConverter;
sal_Size nDestChars, nSrcBytes; sal_Size nSrcBytes;
sal_uInt32 nInfo; sal_uInt32 nInfo;
pScratch = alloca( sizeof(rtl_uString) + ulen * sizeof (IMPL_RTL_STRCODE) ); pScratch = alloca( sizeof(rtl_uString) + ulen * sizeof (IMPL_RTL_STRCODE) );
hConverter = rtl_createTextToUnicodeConverter( eTextEncoding ); hConverter = rtl_createTextToUnicodeConverter( eTextEncoding );
nDestChars = rtl_convertTextToUnicode( rtl_convertTextToUnicode(
hConverter, 0, str, len, pScratch->buffer, ulen, convertFlags, &nInfo, &nSrcBytes ); hConverter, 0, str, len, pScratch->buffer, ulen, convertFlags, &nInfo, &nSrcBytes );
rtl_destroyTextToUnicodeConverter( hConverter ); rtl_destroyTextToUnicodeConverter( hConverter );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment