Fix DBus error message if IBus couldn't be initialized.

This commit is contained in:
Alex Baines 2015-03-20 19:47:03 +00:00
parent 8011557458
commit a4458a7002
1 changed files with 4 additions and 2 deletions

View File

@ -479,9 +479,11 @@ SDL_IBus_Init(void)
inotify_wd = inotify_add_watch(inotify_fd, addr_file, IN_CREATE | IN_MODIFY);
SDL_free(addr_file);
if (addr) {
result = IBus_SetupConnection(dbus, addr);
SDL_free(addr);
}
}
return result;
}