OSDN Git Service

cmdutils: add missing check for ftell() return
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Oct 2012 22:10:59 +0000 (00:10 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 17 Oct 2012 22:10:59 +0000 (00:10 +0200)
Fixed CID703706
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
cmdutils.c

index f4474f6..0163faf 100644 (file)
@@ -1303,6 +1303,10 @@ int cmdutils_read_file(const char *filename, char **bufptr, size_t *size)
     fseek(f, 0, SEEK_END);
     *size = ftell(f);
     fseek(f, 0, SEEK_SET);
+    if (*size == (size_t)-1) {
+        av_log(NULL, AV_LOG_ERROR, "IO error: %s\n", strerror(errno));
+        return AVERROR(errno);
+    }
     *bufptr = av_malloc(*size + 1);
     if (!*bufptr) {
         av_log(NULL, AV_LOG_ERROR, "Could not allocate file buffer\n");