Changeset 2533 for branches/libc-0.6
- Timestamp:
- Feb 5, 2006, 6:47:16 AM (20 years ago)
- Location:
- branches/libc-0.6/src/emx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/libc-0.6/src/emx/ChangeLog.LIBC
r2529 r2533 12 12 o #25: Ensure correct address length returns from recvmsg and recvfrom. 13 13 - libc: 14 o #30: Fixed toupper / tolower EOF regression. 14 15 o Fixed incorrect assertion in __libc_back_fsInfoObjRelease. 15 16 o #41: And added special file mode mask getter and extra validations to check that -
branches/libc-0.6/src/emx/src/lib/locale/locale_ctype.c
r2511 r2533 232 232 __ct_rune_t __toupper(__ct_rune_t __ch) 233 233 { 234 return __ch <= 255 && __ch >= -128 234 return __ch <= 255 && __ch >= -128 && __ch != -1 /* EOF */ 235 235 ? __libc_GLocaleCtype.auchUpper[__ch & 0xff] 236 236 : __ch; … … 239 239 __ct_rune_t __tolower(__ct_rune_t __ch) 240 240 { 241 return __ch <= 255 && __ch >= -128241 return __ch <= 255 && __ch >= 128 && __ch != -1 /* EOF */ 242 242 ? __libc_GLocaleCtype.auchLower[__ch & 0xff] 243 243 : __ch;
Note:
See TracChangeset
for help on using the changeset viewer.