vpath: A temp patch for migration task
authorWonki Kim <wonki_.kim@samsung.com>
Mon, 11 Dec 2017 02:33:26 +0000 (11:33 +0900)
committerJiyoun Park <jy0703.park@samsung.com>
Thu, 21 Dec 2017 12:22:58 +0000 (21:22 +0900)
calling setuid makes crash on qemu environment, especially for arm env
so this patch skip setuid temporally

Change-Id: Ia7dc5ab03b641b9c5da4d136986a6487b2c6378c
Signed-off-by: Wonki Kim <wonki_.kim@samsung.com>
src/lib/efl/interfaces/efl_vpath_core.c

index d6b1363..7fb01ba 100644 (file)
@@ -103,6 +103,9 @@ _efl_vpath_core_efl_object_constructor(Eo *obj, Efl_Vpath_Core_Data *pd)
    //   directory MUST be owned by the user, and he MUST be the only one
    //   having read and write access to it. Its Unix access mode MUST
    //   be 0700.
+   // TIZEN_ONLY: A temp patch for migration task
+   if (EINA_FALSE)
+   // TIZEN_ONLY
 #if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
    if ((getuid() != geteuid()) || (!(s = getenv("XDG_RUNTIME_DIR"))))
 #else