git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
4l: TIFF stores short strings inside tag, do not interpret it is as an offset
[ffmpeg.git]
/
libavcodec
/
tiff.c
diff --git
a/libavcodec/tiff.c
b/libavcodec/tiff.c
index
7e42aab
..
7e789b4
100644
(file)
--- a/
libavcodec/tiff.c
+++ b/
libavcodec/tiff.c
@@
-176,6
+176,11
@@
static int tiff_decode_tag(TiffContext *s, const uint8_t *start, const uint8_t *
value = off;
buf = NULL;
break;
+ case TIFF_STRING:
+ if(count <= 4){
+ buf -= 4;
+ break;
+ }
default:
value = -1;
buf = start + off;