Changeset 286330 in webkit
- Timestamp:
- Nov 30, 2021, 3:43:17 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/posix/SharedBufferPOSIX.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r286327 r286330 1 2021-11-30 ujwal koneru <ujwal.koneru@sony.com> 2 3 Fix Playstation build after r286171 4 https://bugs.webkit.org/show_bug.cgi?id=233581 5 6 unreviewed build fix. 7 8 * platform/posix/SharedBufferPOSIX.cpp: 9 (WebCore::SharedBuffer::createFromReadingFile): 10 1 11 2021-11-30 Gabriel Nava Marino <gnavamarino@apple.com> 2 12 -
trunk/Source/WebCore/platform/posix/SharedBufferPOSIX.cpp
r278532 r286330 61 61 size_t totalBytesRead = 0; 62 62 ssize_t bytesRead; 63 while ((bytesRead = read(fd, buffer.data() + totalBytesRead, bytesToRead - totalBytesRead)) > 0)63 while ((bytesRead = ::read(fd, buffer.data() + totalBytesRead, bytesToRead - totalBytesRead)) > 0) 64 64 totalBytesRead += bytesRead; 65 65
Note:
See TracChangeset
for help on using the changeset viewer.