Fix null pointer dereference

This commit is contained in:
Raphael Assenat 2015-12-08 21:54:08 -05:00
parent cc3ca163c4
commit 019301b7b2
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -321,7 +321,7 @@ int main(void)
/* Try to auto-detect controller if none*/ /* Try to auto-detect controller if none*/
if (!pad) { if (!pad) {
pad = detectPad(); pad = detectPad();
if (pad->hotplug) { if (pad && (pad->hotplug)) {
// For gamecube, this make sure the next // For gamecube, this make sure the next
// analog values we read become the center // analog values we read become the center
// reference. // reference.