mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-02-01 16:10:28 +01:00
sysdeps-win: Fix autolaunch: regression on Windows
Commit f20a05f60f included in dbus-1.15.0 broke autolaunch: on
Windows. autolaunch_custom_command_line_parameter shall be initalized
to null as it is later used in only one place in the code, with this
ternary:
autolaunch_custom_command_line_parameter ? autolaunch_custom_command_line_parameter : "--session"
Closes #503
This commit is contained in:
parent
6c31c381e2
commit
73b574bd21
1 changed files with 1 additions and 1 deletions
|
|
@ -2759,7 +2759,7 @@ static const char *cDBusDaemonMutex = "DBusDaemonMutex";
|
|||
static const char *cDBusDaemonAddressInfo = "DBusDaemonAddressInfo";
|
||||
|
||||
/* custom command line parameter for autolaunching daemon */
|
||||
static const char *autolaunch_custom_command_line_parameter = "";
|
||||
static const char *autolaunch_custom_command_line_parameter = NULL;
|
||||
|
||||
/**
|
||||
* Set command line parameters for the dbus daemon to start
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue