diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-05-28 12:42:46 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-05-29 09:56:18 -0400 |
commit | 396178370b9dc20275811dcc3b607c5af70689ba (patch) | |
tree | 6af2ad3ec43099c4b264f8aee5720fd932e2f02f /sound/firewire | |
parent | aeebbddda7588d25dd2c1a6180f740c67f05797d (diff) |
ALSA: fireworks: small leak on error path
There was a typo here so we return directly instead of freeing "hwinfo".
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewd-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Tested-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire')
-rw-r--r-- | sound/firewire/fireworks/fireworks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/fireworks/fireworks.c b/sound/firewire/fireworks/fireworks.c index 8e856cc6630d..996fdc44c83c 100644 --- a/sound/firewire/fireworks/fireworks.c +++ b/sound/firewire/fireworks/fireworks.c | |||
@@ -157,7 +157,7 @@ get_hardware_info(struct snd_efw *efw) | |||
157 | /* Hardware metering. */ | 157 | /* Hardware metering. */ |
158 | if (hwinfo->phys_in_grp_count > HWINFO_MAX_CAPS_GROUPS || | 158 | if (hwinfo->phys_in_grp_count > HWINFO_MAX_CAPS_GROUPS || |
159 | hwinfo->phys_out_grp_count > HWINFO_MAX_CAPS_GROUPS) { | 159 | hwinfo->phys_out_grp_count > HWINFO_MAX_CAPS_GROUPS) { |
160 | return -EIO; | 160 | err = -EIO; |
161 | goto end; | 161 | goto end; |
162 | } | 162 | } |
163 | efw->phys_in = hwinfo->phys_in; | 163 | efw->phys_in = hwinfo->phys_in; |