From 085d20cd65574ba322b2c3a6b2e1d53b9da6c3f2 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sat, 23 Oct 2021 12:38:44 +0200 Subject: caja-application: avoid SEGV when profiling/debugging code --- src/caja-application.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/caja-application.c b/src/caja-application.c index ff63618c..692d4f4b 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]; -- cgit v1.2.1