]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/avsscanf.c
tools/target_dem_fuzzer: use avio_context_free() to free the fuzzer's AVIOContext
[ffmpeg] / libavutil / avsscanf.c
index 1c85412fd4d5945a4332fbd43f9551baf5a9da8d..850c117940ef327ca6e1ca3f24f9cef106bca864 100644 (file)
@@ -229,9 +229,9 @@ static long long scanexp(FFFILE *f, int pok)
         return LLONG_MIN;
     }
     for (x=0; c-'0'<10U && x<INT_MAX/10; c = shgetc(f))
-        x = 10*x + c-'0';
+        x = 10*x + (c-'0');
     for (y=x; c-'0'<10U && y<LLONG_MAX/100; c = shgetc(f))
-        y = 10*y + c-'0';
+        y = 10*y + (c-'0');
     for (; c-'0'<10U; c = shgetc(f));
     shunget(f);
     return neg ? -y : y;