From: Dan Carpenter Date: Fri, 14 May 2010 14:49:20 +0000 (+0200) Subject: ALSA: asihpi: testing the wrong variable X-Git-Tag: v5.15~29575^2~4^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=2448b14715bc83d75ed779452fe89285df4d772a;p=mirror_ubuntu-kernels.git ALSA: asihpi: testing the wrong variable There is a typo here. We want to test "*dst" not "dst". Signed-off-by: Dan Carpenter Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/asihpi/hpifunc.c b/sound/pci/asihpi/hpifunc.c index 254c580db639..15f0c7ea0e52 100644 --- a/sound/pci/asihpi/hpifunc.c +++ b/sound/pci/asihpi/hpifunc.c @@ -3279,7 +3279,7 @@ static u16 hpi_entity_alloc_and_copy(struct hpi_entity *src, buf_size = hpi_entity_size(src); *dst = kmalloc(buf_size, GFP_KERNEL); - if (dst == NULL) + if (*dst == NULL) return HPI_ERROR_MEMORY_ALLOC; memcpy(*dst, src, buf_size); return 0;