Do not exit when making a cache directory fails 75/282575/1
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 6 Oct 2022 06:14:10 +0000 (15:14 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 6 Oct 2022 06:14:10 +0000 (15:14 +0900)
We don't need to exit in the case. DALi can work even though it fails.

Change-Id: I25a428b2c43e71aa2a132a89b57479e405ace9b0

dali/internal/adaptor/common/adaptor-impl.cpp

index d884b92..eedcbed 100644 (file)
@@ -302,7 +302,6 @@ void Adaptor::Initialize(GraphicsFactory& graphicsFactory)
     if(0 != dir_err && errno != EEXIST)
     {
       DALI_LOG_ERROR("Error creating system cache directory: %s!\n", systemCachePath.c_str());
-      exit(1);
     }
   }