Changeset 3705
- Timestamp:
- Mar 16, 2011, 10:04:20 PM (14 years ago)
- Location:
- trunk/libc/src/libc/locale/os2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/libc/src/libc/locale/os2/Makefile.kmk ¶
r2935 r3705 1 1 # Forward to the parent makefile. 2 DEPTH = ../../../.. 2 DEPTH = ../../../../.. 3 3 include $(PATH_KBUILD)/up.kmk 4 4 -
TabularUnified trunk/libc/src/libc/locale/os2/iconv.c ¶
r2729 r3705 158 158 size_t nonid; 159 159 UniChar *ucs; 160 UniChar *pucsFree = NULL; 160 161 UniChar *orig_ucs; 161 162 size_t retval = 0; … … 185 186 } 186 187 187 sl = *in_left; 188 ucs = (UniChar *) alloca (sl * sizeof (UniChar)); 188 sl = *in_left; 189 if (sl <= 1024) 190 ucs = (UniChar *) alloca (sl * sizeof (UniChar)); 191 else 192 { 193 pucsFree = ucs = (UniChar *) malloc (sl * sizeof (UniChar)); 194 if (!ucs) 195 { 196 errno = ENOMEM; 197 return -1; 198 } 199 } 189 200 orig_ucs = ucs; 190 201 … … 220 231 } 221 232 #endif 233 if (pucsFree) 234 free(pucsFree); 222 235 FS_RESTORE(); 223 236 return 0; … … 240 253 break; 241 254 } 255 if (pucsFree) 256 free(pucsFree); 242 257 FS_RESTORE(); 243 258 return (size_t)(-1);
Note:
See TracChangeset
for help on using the changeset viewer.