Changeset 28904 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Apr 29, 2010 3:13:22 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60848
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/utf8-posix.cpp
r28903 r28904 85 85 for (size_t i = 0; i < RT_ELEMENTS(pThread->ahIconvs); i++) 86 86 { 87 iconv_t hIconv = pThread->ahIconvs[i];88 pThread->ahIconvs[i] = NULL;87 iconv_t hIconv = (iconv_t)pThread->ahIconvs[i]; 88 pThread->ahIconvs[i] = (iconv_t)-1; 89 89 if (hIconv != (iconv_t)-1) 90 90 iconv_close(hIconv); … … 369 369 return rtstrConvertCached(pchInput, cchInput, pszInputCS, 370 370 (void **)ppszOutput, cbOutput, pszOutputCS, 371 cFactor, &pThread->ahIconvs[enmCacheIdx]);371 cFactor, (iconv_t *)&pThread->ahIconvs[enmCacheIdx]); 372 372 } 373 373 #endif
Note:
See TracChangeset
for help on using the changeset viewer.