Changeset 5588 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Oct 31, 2007 9:18:00 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/utf8-posix.cpp
r4071 r5588 102 102 const void *pvInputLeft = pvInput; 103 103 void *pvOutputLeft = pvOutput; 104 #if def RT_OS_LINUX /* glibc has an incorrect declaration of the api. */104 #if defined(RT_OS_LINUX) || defined(_LIBICONV_VERSION) /* there are different opinions about the constness of the input buffer. */ 105 105 if (iconv(icHandle, (char **)&pvInputLeft, &cbInLeft, (char **)&pvOutputLeft, &cbOutLeft) != (size_t)-1) 106 106 #else
Note:
See TracChangeset
for help on using the changeset viewer.