Skip to content

Commit

Permalink
HPCC-33288 Support zero len remote compressed files
Browse files Browse the repository at this point in the history
Signed-off-by: Jake Smith <jake.smith@lexisnexisrisk.com>
  • Loading branch information
jakesmith committed Jan 22, 2025
1 parent 7089549 commit 0d45c95
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fs/dafsclient/rmtfile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1421,6 +1421,9 @@ class CRemoteFileIO : public CInterfaceOf<IFileIO>

size32_t read(offset_t pos, size32_t len, void * data)
{
if (0 == len)
return 0;
dbgassertex(data);
size32_t got;
MemoryBuffer replyBuffer;
CCycleTimer timer;
Expand Down

0 comments on commit 0d45c95

Please sign in to comment.