From d8beaba79f149204ba9b1c8e845816a2fd1ba9ef Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 31 Jan 2014 16:18:46 +0200 Subject: [PATCH] android/hal-audio: Check calloc return value calloc() might return NULL and is usually checked for NULL in BlueZ. --- android/hal-audio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/android/hal-audio.c b/android/hal-audio.c index b1323b0b4..35bafe77e 100644 --- a/android/hal-audio.c +++ b/android/hal-audio.c @@ -313,6 +313,8 @@ static int sbc_codec_init(struct audio_preset *preset, uint16_t mtu, } sbc_data = calloc(sizeof(struct sbc_data), 1); + if (!sbc_data) + return AUDIO_STATUS_FAILED; memcpy(&sbc_data->sbc, preset->data, preset->len); -- 2.47.3