Commit 39617837 authored by Dan Carpenter's avatar Dan Carpenter Committed by Takashi Iwai

ALSA: fireworks: small leak on error path

There was a typo here so we return directly instead of freeing "hwinfo".
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Reviewd-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
Tested-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent aeebbddd
......@@ -157,7 +157,7 @@ get_hardware_info(struct snd_efw *efw)
/* Hardware metering. */
if (hwinfo->phys_in_grp_count > HWINFO_MAX_CAPS_GROUPS ||
hwinfo->phys_out_grp_count > HWINFO_MAX_CAPS_GROUPS) {
return -EIO;
err = -EIO;
goto end;
}
efw->phys_in = hwinfo->phys_in;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment