diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2015-01-03 17:10:52 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-01-04 17:11:56 +0300 |
commit | d1f45e6037f1195d10cf363e94a08ee2f10f9b41 (patch) | |
tree | 4e68e24f1ef8deb949c21bf2caa2be1f8531bbff /sound/oss/pss.c | |
parent | 57dca36ee25bcab20a71705175c00b6f114cdab4 (diff) | |
download | linux-d1f45e6037f1195d10cf363e94a08ee2f10f9b41.tar.xz |
sound: oss: Deletion of unnecessary checks before the function call "vfree"
The vfree() function performs also input parameter validation. Thus the test
around the call is not needed.
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/oss/pss.c')
-rw-r--r-- | sound/oss/pss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/pss.c b/sound/oss/pss.c index ca0d6e9f49f5..81314f9e2ccb 100644 --- a/sound/oss/pss.c +++ b/sound/oss/pss.c @@ -1228,7 +1228,7 @@ static void __exit cleanup_pss(void) { if(!pss_no_sound) { - if(fw_load && pss_synth) + if (fw_load) vfree(pss_synth); if(pssmss) unload_pss_mss(&cfg2); |