[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1203459219-14719-7-git-send-email-jim@meyering.net>
Date: Tue, 19 Feb 2008 23:13:39 +0100
From: Jim Meyering <jim@...ering.net>
To: linux-kernel@...r.kernel.org
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Markus Armbruster <armbru@...hat.com>,
Jim Meyering <jim@...ering.net>
Subject: [PATCH] usbaudio: handle kcalloc failure
* sound/usb/usbaudio.c (check_hw_params_convention): Handle kcalloc failure.
Signed-off-by: Jim Meyering <meyering@...hat.com>
---
sound/usb/usbaudio.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/sound/usb/usbaudio.c b/sound/usb/usbaudio.c
index 8fa9356..b61533d 100644
--- a/sound/usb/usbaudio.c
+++ b/sound/usb/usbaudio.c
@@ -1735,6 +1735,8 @@ static int check_hw_params_convention(struct snd_usb_substream *subs)
channels = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
rates = kcalloc(MAX_MASK, sizeof(u32), GFP_KERNEL);
+ if (!channels || !rates)
+ goto __out;
list_for_each(p, &subs->fmt_list) {
struct audioformat *f;
--
1.5.4.2.134.g82883
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists