diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 20:03:10 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 20:03:10 +0200 |
commit | 17fef17f67c52ff834fe1a2894393170768fcf0a (patch) | |
tree | a5309155ab2d279363725696fe57c80f3f0b1c47 | |
parent | 146e498c9eb1fe7a17191b910fd481ddc9c260ba (diff) | |
download | ffmpeg-17fef17f67c52ff834fe1a2894393170768fcf0a.tar.gz |
avfilter/lavfutils: remove redundant variable init
Found-by: CSA
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/lavfutils.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/lavfutils.c b/libavfilter/lavfutils.c index 93f1ef331d..ebdf8f8f31 100644 --- a/libavfilter/lavfutils.c +++ b/libavfilter/lavfutils.c @@ -79,7 +79,6 @@ int ff_load_image(uint8_t *data[4], int linesize[4], av_log(log_ctx, AV_LOG_ERROR, "Failed to decode image from file\n"); goto end; } - ret = 0; *w = frame->width; *h = frame->height; |