From f9ce2a88ff314a083f352de1f300173f407a4a91 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sat, 5 Apr 2003 12:32:34 +0000 Subject: [PATCH] Fixed >2GB overflow with metafiles --- bfile/mfile.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bfile/mfile.c b/bfile/mfile.c index 62e298a..52b64cf 100644 --- a/bfile/mfile.c +++ b/bfile/mfile.c @@ -1,4 +1,4 @@ -/* $Id: mfile.c,v 1.51 2003-03-25 23:47:23 adam Exp $ +/* $Id: mfile.c,v 1.52 2003-04-05 12:32:34 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003 Index Data Aps @@ -162,10 +162,13 @@ static int file_position(MFile mf, int pos, int offset) return -1; } } - if (mfile_seek(mf->files[c].fd, (ps = pos - off) * mf->blocksize + offset, + ps = pos - off; + if (mfile_seek(mf->files[c].fd, ps * (mfile_off_t) mf->blocksize + offset, SEEK_SET) < 0) { logf (LOG_WARN|LOG_ERRNO, "Failed to seek in %s", mf->files[c].path); + logf(LOG_WARN, "pos=%d off=%d blocksize=%d offset=%d", + pos, off, mf->blocksize, offset); return -1; } mf->cur_file = c; -- 1.7.10.4