diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-03 21:02:18 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-03 21:39:07 +0100 |
commit | add41decd94b2d3581a3715ba10f27168b8cdb1b (patch) | |
tree | 75b99269199b63d99c9cfa92e876cf4682bf44b5 /libavutil | |
parent | f75e3da535f297ddbe501ce866e57ccca7645455 (diff) | |
download | ffmpeg-add41decd94b2d3581a3715ba10f27168b8cdb1b.tar.gz |
Remove return statements following infinite loops without break
These statements cannot be reached and are thus not needed.
This removes a number of compiler warnings.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.c | 1 | ||||
-rw-r--r-- | libavutil/parseutils.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index f65f31fcda..acb745cf3d 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -196,7 +196,6 @@ int av_set_string3(void *obj, const char *name, const char *val, int alloc, cons return 0; notfirst=1; } - return AVERROR(EINVAL); } if (alloc) { diff --git a/libavutil/parseutils.c b/libavutil/parseutils.c index 0272c3ef67..c8124c532e 100644 --- a/libavutil/parseutils.c +++ b/libavutil/parseutils.c @@ -462,7 +462,6 @@ const char *small_strptime(const char *p, const char *fmt, p++; } } - return p; } static time_t mktimegm(struct tm *tm) |