summaryrefslogtreecommitdiffstats
path: root/src/inkscape.cpp
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2019-04-10 12:07:25 +0000
committerTavmjong Bah <tavmjong@free.fr>2019-04-10 12:07:25 +0000
commit5b29da356b6ab47fcd917b68933609856965dbd4 (patch)
treec8bab782ea63ee8ee3f2b6c5fa1216708eea53a4 /src/inkscape.cpp
parentAdd build pipeline for macOS (diff)
downloadinkscape-5b29da356b6ab47fcd917b68933609856965dbd4.tar.gz
inkscape-5b29da356b6ab47fcd917b68933609856965dbd4.zip
Fix segfault when inkscape is started more than once in single app mode.
Fixes Inbox issue #299.
Diffstat (limited to 'src/inkscape.cpp')
-rw-r--r--src/inkscape.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inkscape.cpp b/src/inkscape.cpp
index 928d65d07..3d4866966 100644
--- a/src/inkscape.cpp
+++ b/src/inkscape.cpp
@@ -166,7 +166,7 @@ Application::create(const char *argv0, bool use_gui)
if (!Application::exists()) {
new Application(argv0, use_gui);
} else {
- g_assert_not_reached();
+ // g_assert_not_reached(); Can happen with InkscapeApplication
}
}