You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
291 B

  1. --- a/lib/info.c
  2. +++ b/lib/info.c
  3. @@ -583,7 +583,8 @@ int vorbis_analysis_headerout(vorbis_dsp
  4. oggpack_buffer opb;
  5. private_state *b=v->backend_state;
  6. - if(!b||vi->channels<=0){
  7. + if(!b||vi->channels<=0||vi->channels>255){
  8. + b = NULL;
  9. ret=OV_EFAULT;
  10. goto err_out;
  11. }