Fix segfault when "kbd" fails to load and "keyboard" driver is not

configured.
This commit is contained in:
Alan Coopersmith 2005-08-12 01:17:58 +00:00
parent 13e16ee93a
commit 5f5117729d

View File

@ -1137,7 +1137,8 @@ InitInput(argc, argv)
else {
#ifdef USE_DEPRECATED_KEYBOARD_DRIVER
/* Only set this if we're allowing the old driver. */
xf86Info.pKeyboard = AddInputDevice(xf86Info.kbdProc, TRUE);
if (xf86Info.kbdProc != NULL)
xf86Info.pKeyboard = AddInputDevice(xf86Info.kbdProc, TRUE);
#endif
}
if (corePointer)