Changeset 29559 in vbox
- Timestamp:
- May 17, 2010 3:07:02 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/pipe-posix.cpp
r28800 r29559 425 425 if (RT_SUCCESS(rc)) 426 426 { 427 size_t cbTotalRead = 0; ;427 size_t cbTotalRead = 0; 428 428 while (cbToRead > 0) 429 429 { … … 434 434 break; 435 435 } 436 if (!cbRead && cbToRead > 0 &&rtPipePosixHasHup(pThis))436 if (!cbRead && rtPipePosixHasHup(pThis)) 437 437 { 438 438 rc = VERR_BROKEN_PIPE;
Note:
See TracChangeset
for help on using the changeset viewer.