From b294b3e422dafe6f2eb7f5173ac97b955ada978d Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 6 Dec 2013 09:21:10 -0500 Subject: [PATCH] src/io/source_avcodec.c: check new_ arguments are valid --- src/io/source_avcodec.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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; -- 2.11.0