mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: Kulikov Vasiliy <segooon@gmail.com>
Cc: kernel-janitors@vger.kernel.org, Jaroslav Kysela <perex@perex.cz>,
	Alexey Dobriyan <adobriyan@gmail.com>,
	Dan Carpenter <error27@gmail.com>,
	Andy Shevchenko <ext-andriy.shevchenko@nokia.com>,
	Roel Kluin <roel.kluin@gmail.com>,
	linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org
Subject: Re: [PATCH 12/15] pci: riptide: check kzalloc() result
Date: Mon, 19 Jul 2010 18:00:29 +0200	[thread overview]
Message-ID: <s5h8w57foma.wl%tiwai@suse.de> (raw)
In-Reply-To: <1279296959-25227-1-git-send-email-segooon@gmail.com>

At Fri, 16 Jul 2010 20:15:59 +0400,
Kulikov Vasiliy wrote:
> 
> If kzalloc() fails exit with -ENOMEM.
> 
> Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>

Thanks, applied now.


Takashi

> ---
>  sound/pci/riptide/riptide.c |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
> 
> diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c
> index 59d7996..f64fb7d 100644
> --- a/sound/pci/riptide/riptide.c
> +++ b/sound/pci/riptide/riptide.c
> @@ -1615,7 +1615,10 @@ static int snd_riptide_playback_open(struct snd_pcm_substream *substream)
>  
>  	chip->playback_substream[sub_num] = substream;
>  	runtime->hw = snd_riptide_playback;
> +
>  	data = kzalloc(sizeof(struct pcmhw), GFP_KERNEL);
> +	if (data == NULL)
> +		return -ENOMEM;
>  	data->paths = lbus_play_paths[sub_num];
>  	data->id = play_ids[sub_num];
>  	data->source = play_sources[sub_num];
> @@ -1635,7 +1638,10 @@ static int snd_riptide_capture_open(struct snd_pcm_substream *substream)
>  
>  	chip->capture_substream = substream;
>  	runtime->hw = snd_riptide_capture;
> +
>  	data = kzalloc(sizeof(struct pcmhw), GFP_KERNEL);
> +	if (data == NULL)
> +		return -ENOMEM;
>  	data->paths = lbus_rec_path;
>  	data->id = PADC;
>  	data->source = ACLNK2PADC;
> -- 
> 1.7.0.4
> 

      reply	other threads:[~2010-07-19 16:00 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-16 16:15 Kulikov Vasiliy
2010-07-19 16:00 ` Takashi Iwai [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=s5h8w57foma.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=adobriyan@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=error27@gmail.com \
    --cc=ext-andriy.shevchenko@nokia.com \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=perex@perex.cz \
    --cc=roel.kluin@gmail.com \
    --cc=segooon@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®