aboutsummaryrefslogtreecommitdiff
path: root/src/riff.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-10-11 23:15:38 +0200
committerMax Kellermann <max@duempel.org>2009-10-11 23:15:38 +0200
commit9a3f5ff977951781453fbe1e597dbd6eb5f7494a (patch)
tree25496e5bd1aa6d3e9c1acc79dc4180e41a32ec83 /src/riff.c
parenta1d868eb56bab5063f367e392624e3b3de5ea4d3 (diff)
riff, aiff: fixed "limited range" gcc warning
On 32 bit systems with large file support enabled (i.e. "sizeof(off_t) > sizeof(size_t)") gcc emits a warning because a size_t cast to off_t can never become negative.
Diffstat (limited to 'src/riff.c')
-rw-r--r--src/riff.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/riff.c b/src/riff.c
index 7227fd3c..a8ea9dd4 100644
--- a/src/riff.c
+++ b/src/riff.c
@@ -83,6 +83,11 @@ riff_seek_id3(FILE *file)
return 0;
size = GUINT32_FROM_LE(chunk.size);
+ if (size > G_MAXINT32)
+ /* too dangerous, bail out: possible integer
+ underflow when casting to off_t */
+ return 0;
+
if (size % 2 != 0)
/* pad byte */
++size;
@@ -91,11 +96,6 @@ riff_seek_id3(FILE *file)
/* found it! */
return size;
- if ((off_t)size < 0)
- /* integer underflow after cast to signed
- type */
- return 0;
-
ret = fseek(file, size, SEEK_CUR);
if (ret != 0)
return 0;