mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 13:30:45 -05:00
fbdev: au1100fb: Move a variable assignment behind a null pointer check
The address of a data structure member was determined before
a corresponding null pointer check in the implementation of
the function “au1100fb_setmode”.
This issue was detected by using the Coccinelle software.
Fixes: 3b495f2bb7 ("Au1100 FB driver uplift for 2.6.")
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Acked-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
committed by
Helge Deller
parent
b347f4571e
commit
2df2c0caae
@@ -137,13 +137,15 @@ static int au1100fb_fb_blank(int blank_mode, struct fb_info *fbi)
|
||||
*/
|
||||
int au1100fb_setmode(struct au1100fb_device *fbdev)
|
||||
{
|
||||
struct fb_info *info = &fbdev->info;
|
||||
struct fb_info *info;
|
||||
u32 words;
|
||||
int index;
|
||||
|
||||
if (!fbdev)
|
||||
return -EINVAL;
|
||||
|
||||
info = &fbdev->info;
|
||||
|
||||
/* Update var-dependent FB info */
|
||||
if (panel_is_active(fbdev->panel) || panel_is_color(fbdev->panel)) {
|
||||
if (info->var.bits_per_pixel <= 8) {
|
||||
|
||||
Reference in New Issue
Block a user