Changeset 2545 for branches/libc-0.6
- Timestamp:
- Feb 7, 2006, 6:08:44 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
r2544 r2545 5 5 2006-02-06: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 6 - libc: 7 o #54: Fixed unitialized directory handle member fInUnixTree. 7 8 o #53: Fixed LIBC panic when _openstream locks the stream vector 8 9 in any of it's error cases. -
branches/libc-0.6/src/emx/src/lib/sys/b_dir.c
r2524 r2545 399 399 400 400 __LIBC_PFHDIR pFHDir = (__LIBC_PFHDIR)pFH; 401 pFHDir-> hDir = Tmp.hDir;401 pFHDir->fInUnixTree = 0; 402 402 pFHDir->fType = Tmp.fType; 403 403 pFHDir->uBuf.pv = Tmp.uBuf.pv; … … 405 405 pFHDir->cFiles = Tmp.cFiles; 406 406 pFHDir->cbBuf = Tmp.cbBuf; 407 pFHDir->hDir = Tmp.hDir; 407 408 pFHDir->uCurEntry = 0; 408 409 … … 456 457 pFHDir->Core.Inode = Inode; 457 458 pFHDir->Core.Dev = Dev; 459 pFHDir->fInUnixTree = fInUnixTree; 458 460 459 461 /* … … 517 519 pFHDir->Core.Inode = pStat->st_ino; 518 520 pFHDir->Core.Dev = pStat->st_dev; 521 pFHDir->fInUnixTree = fInUnixTree; 519 522 520 523 LIBCLOG_MSG("pFHDir=%p:{.hDir=%#lx, .fType=%d, .cFiles=%ld, .cbBuf=%#x} fh=%d\n",
Note:
See TracChangeset
for help on using the changeset viewer.