From 25f280f347868fc0f4ecdcb0b45d5a9400f8f772 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 6 Aug 2018 14:03:48 +0200 Subject: [PATCH] src/notes/notes.c: bail out if pitch creation failed (see #188) --- src/notes/notes.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/notes/notes.c b/src/notes/notes.c index f6b7d567..343e5a00 100644 --- a/src/notes/notes.c +++ b/src/notes/notes.c @@ -83,6 +83,7 @@ aubio_notes_t * new_aubio_notes (const char_t * method, o->onset_output = new_fvec (1); o->pitch = new_aubio_pitch (pitch_method, o->pitch_buf_size, o->hop_size, o->samplerate); + if (o->pitch == NULL) goto fail; if (o->pitch_tolerance != 0.) aubio_pitch_set_tolerance (o->pitch, o->pitch_tolerance); aubio_pitch_set_unit (o->pitch, "midi"); o->pitch_output = new_fvec (1); -- 2.11.0