mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
Fix #4743
This commit is contained in:
parent
9f0a4f43b8
commit
9d349d618a
1 changed files with 1 additions and 1 deletions
2
glfw/dbus_glfw.c
vendored
2
glfw/dbus_glfw.c
vendored
|
|
@ -263,7 +263,7 @@ call_method_with_msg(DBusConnection *conn, DBusMessage *msg, int timeout, dbus_p
|
|||
|
||||
static bool
|
||||
call_method(DBusConnection *conn, const char *node, const char *path, const char *interface, const char *method, int timeout, dbus_pending_callback callback, void *user_data, va_list ap) {
|
||||
if (!conn) return false;
|
||||
if (!conn || !path) return false;
|
||||
DBusMessage *msg = dbus_message_new_method_call(node, path, interface, method);
|
||||
if (!msg) return false;
|
||||
bool retval = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue