From: Paul Brossier Date: Fri, 6 Dec 2013 14:21:10 +0000 (-0500) Subject: src/io/source_avcodec.c: check new_ arguments are valid X-Git-Tag: 0.4.0-beta1~52^2~7 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=b294b3e422dafe6f2eb7f5173ac97b955ada978d;p=aubio.git src/io/source_avcodec.c: check new_ arguments are valid --- diff --git a/src/io/source_avcodec.c b/src/io/source_avcodec.c index 428fca41..a53d7208 100644 --- a/src/io/source_avcodec.c +++ b/src/io/source_avcodec.c @@ -62,10 +62,17 @@ struct _aubio_source_avcodec_t { aubio_source_avcodec_t * new_aubio_source_avcodec(char_t * path, uint_t samplerate, uint_t hop_size) { aubio_source_avcodec_t * s = AUBIO_NEW(aubio_source_avcodec_t); int err; - if (path == NULL) { AUBIO_ERR("Aborted opening null path\n"); - return NULL; + goto beach; + } + if ((sint_t)samplerate < 0) { + AUBIO_ERR("Can not open %s with samplerate %d\n", path, samplerate); + goto beach; + } + if ((sint_t)hop_size <= 0) { + AUBIO_ERR("Can not open %s with hop_size %d\n", path, hop_size); + goto beach; } s->hop_size = hop_size;