Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 284b4c92 authored by Wang YanQing's avatar Wang YanQing Committed by Takashi Iwai
Browse files

ALSA: hda: Fix forget to free resource in error handling code path in hda_codec_driver_probe



When hda_codec_driver_probe meet error and return failure, we need
to free resource with patch_ops.free, or we will get resource leak.

Signed-off-by: default avatarWang YanQing <udknight@gmail.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent b06898d1
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ static int hda_codec_driver_probe(struct device *dev)
	if (patch) {
		err = patch(codec);
		if (err < 0)
			goto error_module;
			goto error_module_put;
	}

	err = snd_hda_codec_build_pcms(codec);
@@ -120,6 +120,9 @@ static int hda_codec_driver_probe(struct device *dev)
	return 0;

 error_module:
	if (codec->patch_ops.free)
		codec->patch_ops.free(codec);
 error_module_put:
	module_put(owner);

 error: