diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-04-09 22:01:10 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-04-09 22:01:34 +0200 |
commit | 837112c0c84dd9de67421b57664933a0d27843f9 (patch) | |
tree | 6781aea999921cfcd853f68f6c8f78307d21a6d0 | |
parent | cdac3acb11356be37e04b6d02cf75ce061d15aeb (diff) | |
download | ffmpeg-837112c0c84dd9de67421b57664933a0d27843f9.tar.gz |
af_channelmap: fix uninitialized variable use introduced in ba8efac977f4276f05274947b2b67d144cbc965a
-rw-r--r-- | libavfilter/af_channelmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_channelmap.c b/libavfilter/af_channelmap.c index 8ed96768ab..da83009c41 100644 --- a/libavfilter/af_channelmap.c +++ b/libavfilter/af_channelmap.c @@ -122,7 +122,7 @@ static int get_channel(char **map, uint64_t *ch, char delim) static av_cold int channelmap_init(AVFilterContext *ctx) { ChannelMapContext *s = ctx->priv; - int ret; + int ret = 0; char *mapping, separator = '|'; int map_entries = 0; char buf[256]; |