From b0b25d75ac3d8feedb1cc04e10b98e626d7b67ff Mon Sep 17 00:00:00 2001 From: Diego Escalante Urrelo Date: Thu, 1 Mar 2012 16:43:24 -0500 Subject: ephy-main: run app mode only with a existing dir https://bugzilla.gnome.org/show_bug.cgi?id=669700 --- src/ephy-main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ephy-main.c b/src/ephy-main.c index 99acbb71b..53f75b8e6 100644 --- a/src/ephy-main.c +++ b/src/ephy-main.c @@ -379,6 +379,11 @@ main (int argc, exit (1); } + if (application_mode && !g_file_test (profile_directory, G_FILE_TEST_IS_DIR)) { + g_print ("--profile must be an existing directory when --application-mode is requested\n"); + exit (1); + } + /* Work-around Flash Player crash */ g_setenv ("XLIB_SKIP_ARGB_VISUALS", "1", FALSE); -- cgit v1.2.3