Skip to content

Commit

Permalink
Merge pull request #6462 from garlick/issue#6461
Browse files Browse the repository at this point in the history
libfileref: fix segfault for files >2G
  • Loading branch information
mergify[bot] authored Nov 28, 2024
2 parents 8015f88 + 69dc453 commit 9c3bb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/libfilemap/fileref.c
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ static json_t *blobvec_create (int fd,
#endif
if (offset < size) {
off_t notdata;
int blobsize;
size_t blobsize;

#ifdef SEEK_HOLE
// N.B. returns size if there are no more holes
Expand Down

0 comments on commit 9c3bb07

Please sign in to comment.