]> git.sesse.net Git - ffmpeg/commitdiff
lavf/segment: remove silly assert(), improve feedback
authorStefano Sabatini <stefasab@gmail.com>
Sun, 9 Dec 2012 19:39:27 +0000 (20:39 +0100)
committerStefano Sabatini <stefasab@gmail.com>
Sun, 9 Dec 2012 19:42:35 +0000 (20:42 +0100)
The code should not assert in case of invalid user input. Fails
gracefully instead.

libavformat/segment.c

index 1ad410ea8848d49298a10304a02951dddecc2618..15c87db947c8ea584296d4290fe4492426238dc3 100644 (file)
@@ -29,7 +29,6 @@
 #include "avformat.h"
 #include "internal.h"
 
-#include "libavutil/avassert.h"
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
 #include "libavutil/avstring.h"
@@ -274,13 +273,18 @@ static int parse_times(void *log_ctx, int64_t **times, int *nb_times,
     for (i = 0; i < *nb_times; i++) {
         int64_t t;
         char *tstr = av_strtok(p, ",", &saveptr);
-        av_assert0(tstr);
         p = NULL;
 
+        if (!tstr || !tstr[0]) {
+            av_log(log_ctx, AV_LOG_ERROR, "Empty time specification in times list %s\n",
+                   times_str);
+            FAIL(AVERROR(EINVAL));
+        }
+
         ret = av_parse_time(&t, tstr, 1);
         if (ret < 0) {
             av_log(log_ctx, AV_LOG_ERROR,
-                   "Invalid time duration specification in %s\n", p);
+                   "Invalid time duration specification '%s' in times list %s\n", tstr, times_str);
             FAIL(AVERROR(EINVAL));
         }
         (*times)[i] = t;