Commit 3b9c10dc authored by Vitaly Wool's avatar Vitaly Wool Committed by Linus Torvalds

[PATCH] pnx4008:fix NULL dereference in rgbfb

Fix possible NULL dereference in pnxrgbfb.
Signed-off-by: default avatarVitaly Wool <vwool@ru.mvista.com>
Cc: James Simmons <jsimmons@infradead.org>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 84a763e3
...@@ -154,7 +154,8 @@ static int __devinit rgbfb_probe(struct platform_device *pdev) ...@@ -154,7 +154,8 @@ static int __devinit rgbfb_probe(struct platform_device *pdev)
goto err1; goto err1;
} }
if (!fb_get_options("pnxrgbfb", &option) && !strcmp(option, "nocursor")) if (!fb_get_options("pnxrgbfb", &option) && option &&
!strcmp(option, "nocursor"))
rgbfb_ops.fb_cursor = no_cursor; rgbfb_ops.fb_cursor = no_cursor;
info->node = -1; info->node = -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment