The patch titled pnx4008:fix NULL dereference in rgbfb has been added to the -mm tree. Its filename is pnx4008fix-null-dereference-in-rgbfb.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: pnx4008:fix NULL dereference in rgbfb From: Vitaly Wool <vwool@xxxxxxxxxxxxx> Fix possible NULL dereference in pnxrgbfb. Signed-off-by: Vitaly Wool <vwool@xxxxxxxxxxxxx> Cc: James Simmons <jsimmons@xxxxxxxxxxxxx> Cc: "Antonino A. Daplas" <adaplas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/video/pnx4008/pnxrgbfb.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/video/pnx4008/pnxrgbfb.c~pnx4008fix-null-dereference-in-rgbfb drivers/video/pnx4008/pnxrgbfb.c --- a/drivers/video/pnx4008/pnxrgbfb.c~pnx4008fix-null-dereference-in-rgbfb +++ a/drivers/video/pnx4008/pnxrgbfb.c @@ -154,7 +154,8 @@ static int __devinit rgbfb_probe(struct 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; info->node = -1; _ Patches currently in -mm which might be from vwool@xxxxxxxxxxxxx are pnx4008-rename-driver.patch pnx4008fix-null-dereference-in-rgbfb.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html