OSDN Git Service

tiff: run strlen() after setting the pointer
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Oct 2012 18:58:08 +0000 (20:58 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Oct 2012 18:58:08 +0000 (20:58 +0200)
Fixes CID733803
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
libavcodec/tiff.c

index ad0b0ba..1f9a029 100644 (file)
@@ -208,8 +208,9 @@ static char *doubles2str(double *dp, int count, const char *sep)
 {
     int i;
     char *ap, *ap0;
-    int component_len = 15 + strlen(sep);
+    int component_len;
     if (!sep) sep = ", ";
+    component_len = 15 + strlen(sep);
     ap = av_malloc(component_len * count);
     if (!ap)
         return NULL;