summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Matthews <tmatth@videolan.org>2018-04-09 11:15:07 -0400
committerTristan Matthews <tmatth@videolan.org>2018-04-09 11:15:07 -0400
commit42f2bb2936ea06e3a9a2fc2260988120d6dfc97d (patch)
treede6ae03e1b15e9d83f9e844fec210218441a2208
parent4d6177c8a3682728c0f71c03b846369f48af399a (diff)
downloadlibvorbis-git-bugfix/1975.tar.gz
vorbisenc: detect if new_template is NULLbugfix/1975
Fixes #1975
-rw-r--r--lib/vorbisenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vorbisenc.c b/lib/vorbisenc.c
index 4a4607cb..4fc7b62f 100644
--- a/lib/vorbisenc.c
+++ b/lib/vorbisenc.c
@@ -1210,7 +1210,7 @@ int vorbis_encode_ctl(vorbis_info *vi,int number,void *arg){
hi->req,
hi->managed,
&new_base);
- if(!hi->setup)return OV_EIMPL;
+ if(!new_template)return OV_EIMPL;
hi->setup=new_template;
hi->base_setting=new_base;
vorbis_encode_setup_setting(vi,vi->channels,vi->rate);