From cf2c6fa58dea02edb870cff7090fd69f3dfbd081 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 4 Apr 2023 12:33:41 -0700 Subject: [PATCH] Fixed crash if dbus can't be initialized --- src/core/linux/SDL_fcitx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/linux/SDL_fcitx.c b/src/core/linux/SDL_fcitx.c index 58ac948fd6..43e09d722f 100644 --- a/src/core/linux/SDL_fcitx.c +++ b/src/core/linux/SDL_fcitx.c @@ -276,7 +276,8 @@ static SDL_bool FcitxCreateInputContext(SDL_DBusContext *dbus, const char *appna { const char *program = "program"; SDL_bool retval = SDL_FALSE; - if (dbus->session_conn) { + + if (dbus && dbus->session_conn) { DBusMessage *msg = dbus->message_new_method_call(FCITX_DBUS_SERVICE, FCITX_IM_DBUS_PATH, FCITX_IM_DBUS_INTERFACE, "CreateInputContext"); if (msg) { DBusMessage *reply = NULL;