1
0
Fork 0
mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git synced 2025-01-24 09:13:20 -05:00

[PATCH] savagefb: Fix kfree before use

par->edid is kfree'd before using in fb_edid_to_monspecs()

Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Antonino A. Daplas 2006-03-11 03:27:25 -08:00 committed by Linus Torvalds
parent 91bc89cf98
commit 8d57f2210e

View file

@ -2021,8 +2021,8 @@ static int __devinit savagefb_probe (struct pci_dev* dev,
#if defined(CONFIG_FB_SAVAGE_I2C) #if defined(CONFIG_FB_SAVAGE_I2C)
savagefb_create_i2c_busses(info); savagefb_create_i2c_busses(info);
savagefb_probe_i2c_connector(info, &par->edid); savagefb_probe_i2c_connector(info, &par->edid);
kfree(par->edid);
fb_edid_to_monspecs(par->edid, &info->monspecs); fb_edid_to_monspecs(par->edid, &info->monspecs);
kfree(par->edid);
fb_videomode_to_modelist(info->monspecs.modedb, fb_videomode_to_modelist(info->monspecs.modedb,
info->monspecs.modedb_len, info->monspecs.modedb_len,
&info->modelist); &info->modelist);