Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions port/cpl_vsil_unix_stdio_64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,9 @@ size_t VSIUnixStdioHandle::Write(const void *pBuffer, size_t nBytes)
write(fd, pabySrc + nBytesWritten, nRemaining);
if (nWritten < 0)
{
// TODO if there is not sufficient space on the
// target device, remove all files from the temporary directory,
// except the ones containing GDAL in their name.
bError = true;
break;
}
Expand Down