[vlc-commits] remap: Fix missing NULL terminator
Hugo Beauzée-Luyssen
git at videolan.org
Mon Aug 21 16:25:31 CEST 2017
vlc | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Aug 21 16:24:57 2017 +0200| [5b95aa9445d8bd0ed1b8c3a310169b5a30a39649] | committer: Hugo Beauzée-Luyssen
remap: Fix missing NULL terminator
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5b95aa9445d8bd0ed1b8c3a310169b5a30a39649
---
modules/audio_filter/channel_mixer/remap.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/audio_filter/channel_mixer/remap.c b/modules/audio_filter/channel_mixer/remap.c
index 064be9b64f..b4136bb505 100644
--- a/modules/audio_filter/channel_mixer/remap.c
+++ b/modules/audio_filter/channel_mixer/remap.c
@@ -281,7 +281,7 @@ static int OpenFilter( vlc_object_t *p_this )
static const char *const options[] = {
"channel-left", "channel-center", "channel-right", "channel-rearleft",
"channel-rearcenter", "channel-rearright", "channel-middleleft",
- "channel-middleright", "channel-lfe", "normalize",
+ "channel-middleright", "channel-lfe", "normalize", NULL
};
config_ChainParse(p_filter, REMAP_CFG, options, p_filter->p_cfg);
More information about the vlc-commits
mailing list