From 0edd4bfceab53113a2cf46bc151217bfcb042b46 Mon Sep 17 00:00:00 2001 From: heckflosse Date: Thu, 14 Jun 2018 15:38:40 +0200 Subject: [PATCH] dcp profiles not found when user dcp profile dir did not exist --- rtengine/dcp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/dcp.cc b/rtengine/dcp.cc index ec65a030a..c18ee8915 100644 --- a/rtengine/dcp.cc +++ b/rtengine/dcp.cc @@ -1813,7 +1813,7 @@ void DCPStore::init(const Glib::ustring& rt_profile_dir, bool loadAll) try { if (!Glib::file_test(dirname, Glib::FILE_TEST_IS_DIR)) { - return; + continue; } dir.reset(new Glib::Dir(dirname));