Changeset 2570
- Timestamp:
- Mar 7, 2006, 2:54:39 AM (19 years ago)
- Location:
- branches/libc-0.6/src/emx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/libc-0.6/src/emx/ChangeLog.LIBC ¶
r2553 r2570 3 3 TODO: open replace on RAMFS fails with error 32! 4 4 5 2006-03-06: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - libc: 7 o #60: Fixed blunder in exec/spawn filehandle inheritance code. 8 5 9 2006-03-04: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 10 - emxomfld: -
TabularUnified branches/libc-0.6/src/emx/src/lib/sys/filehandles.c ¶
r2324 r2570 186 186 { 187 187 case __LIBC_SPM_INH_FHB_TYPE_STANDARD: 188 for (i = 0; i < c; i++ )188 for (i = 0; i < c; i++, iFH++) 189 189 { 190 190 __LIBC_PFH pFH; … … 205 205 206 206 case __LIBC_SPM_INH_FHB_TYPE_DIRECTORY: 207 for (i = 0; i < c; i++ )207 for (i = 0; i < c; i++, iFH++) 208 208 { 209 209 const char *pszPath = u.pDirs->aHandles[i].offNativePath ? pInherit->pszStrings + u.pDirs->aHandles[i].offNativePath : NULL; … … 222 222 223 223 case __LIBC_SPM_INH_FHB_TYPE_SOCKET_44: 224 for (i = 0; i < c; i++ )224 for (i = 0; i < c; i++, iFH++) 225 225 { 226 226 int rc = TCPNAMEG44(AllocFHEx)(iFH, u.pSockets->aHandles[i].usSocket, u.pSockets->aHandles[i].fFlags, 0, NULL, NULL); … … 237 237 238 238 case __LIBC_SPM_INH_FHB_TYPE_SOCKET_43: 239 for (i = 0; i < c; i++ )239 for (i = 0; i < c; i++, iFH++) 240 240 { 241 241 int rc = TCPNAMEG43(AllocFHEx)(iFH, u.pSockets->aHandles[i].usSocket, u.pSockets->aHandles[i].fFlags, 0, NULL, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.