diff options
author | rbuj <[email protected]> | 2021-10-23 12:38:44 +0200 |
---|---|---|
committer | rbuj <[email protected]> | 2021-12-21 15:22:45 +0100 |
commit | e99902aa79f15687b746d237ae0790795c8bb094 (patch) | |
tree | 11c0a033699092b54463a26d87c9bff433de7693 /src | |
parent | 9e98a57e4be91b38c4318693492ba6a529407a86 (diff) | |
download | caja-e99902aa79f15687b746d237ae0790795c8bb094.tar.bz2 caja-e99902aa79f15687b746d237ae0790795c8bb094.tar.xz |
caja-application: avoid SEGV when profiling/debugging code
Diffstat (limited to 'src')
-rw-r--r-- | src/caja-application.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/caja-application.c b/src/caja-application.c index 065f8cbd..352cb70f 100644 --- a/src/caja-application.c +++ b/src/caja-application.c @@ -368,13 +368,12 @@ caja_application_open (GApplication *app, gboolean browser_window = FALSE; gboolean open_in_tabs = FALSE; const gchar *geometry = NULL; - const char splitter = '='; g_debug ("Open called on the GApplication instance; %d files", n_files); /* Check if local command line passed --browser, --geometry or --tabs */ if (strlen (options) > 0) { - gchar** splitedOptions = g_strsplit (options, &splitter, 3); + gchar** splitedOptions = g_strsplit (options, "=", 3); sscanf (splitedOptions[0], "%d", &browser_window); if (strcmp (splitedOptions[1], "NULL") != 0) { geometry = splitedOptions[1]; |