From f92c0b16888dfcc07829dc18c779ec84f69ab5d8 Mon Sep 17 00:00:00 2001 From: Adrian Grange Date: Fri, 30 Jan 2015 10:42:29 -0800 Subject: [PATCH] Abort if firstpass file does not exist This fixes a crash if the firstpass file does not exist when doing a two-pass encode. Change-Id: I3a1a95d68d57125c63123d6208af7537f5a689a0 --- vpxstats.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vpxstats.c b/vpxstats.c index 5f88f8d35..172d8937c 100644 --- a/vpxstats.c +++ b/vpxstats.c @@ -41,6 +41,9 @@ int stats_open_file(stats_io_t *stats, const char *fpf, int pass) { stats->file = fopen(fpf, "rb"); + if (stats->file == NULL) + fatal("First-pass stats file does not exist!"); + if (fseek(stats->file, 0, SEEK_END)) fatal("First-pass stats file must be seekable!"); -- 2.40.0