summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Nelissen <marcone@google.com>2016-06-10 21:54:05 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-06-10 21:54:05 +0000
commit3daffc0fbaba7f1732861652ca336d37a0824100 (patch)
treee6c1fac71143a5b0cde5934c99649cf6d3528b8d
parent5c8f937269957e6651383e988006824781fd021a (diff)
parente3574d919b171dd0c5a3710bd90350abaa609c6c (diff)
downloadjhead-3daffc0fbaba7f1732861652ca336d37a0824100.tar.gz
Fix possible out of bounds access am: 751b4eba25 am: b201f04d8c am: 2d49e2de6e am: a3c15ad42d am: 6c2d0e45b5 am: dbefc1dc4a am: 854fedfa6b am: 2ea3783c81
am: e3574d919b Change-Id: Ia028bfd02ca857b6b5234e24c9b6a9e9dd7f36b0
-rw-r--r--exif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exif.c b/exif.c
index 8dfdaf1..0abfa1d 100644
--- a/exif.c
+++ b/exif.c
@@ -614,7 +614,7 @@ static void ProcessExifDir(unsigned char * DirStart, unsigned char * OffsetBase,
unsigned OffsetVal;
OffsetVal = Get32u(DirEntry+8);
// If its bigger than 4 bytes, the dir entry contains an offset.
- if (OffsetVal+ByteCount > ExifLength){
+ if (OffsetVal > UINT32_MAX - ByteCount || OffsetVal+ByteCount > ExifLength){
// Bogus pointer offset and / or bytecount value
ErrNonfatal("Illegal value pointer for tag %04x", Tag,0);
continue;