summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-04-22 12:49:34 +0100
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>2020-04-22 12:51:50 +0100
commit56e2e21ae777434d718a262297a1e03cf2f565dc (patch)
tree0f267a2c1be5c5b46d4511f07f03bf8422bb6e66
parent53044bf10749ce5456df6cf1398834fc9ab3de84 (diff)
downloadefl-56e2e21ae777434d718a262297a1e03cf2f565dc.tar.gz
ecore_file - address issue about false positive of finding a file in ./
it may report an exe is installed if it happens to be in cwd but cwd isnt in path. the "full/relative" path handling case mishandled this. fixes T8678 @fix
-rw-r--r--src/lib/ecore_file/ecore_file_path.c5
-rw-r--r--src/lib/eina/eina_vpath.c6
2 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/ecore_file/ecore_file_path.c b/src/lib/ecore_file/ecore_file_path.c
index 0c4e466ce5..513f3b9a8a 100644
--- a/src/lib/ecore_file/ecore_file_path.c
+++ b/src/lib/ecore_file/ecore_file_path.c
@@ -95,7 +95,10 @@ ecore_file_app_installed(const char *exe)
char buf[PATH_MAX];
if (!exe) return EINA_FALSE;
- if (ecore_file_can_exec(exe)) return EINA_TRUE;
+ if (((!strncmp(exe, "/", 1)) ||
+ (!strncmp(exe, "./", 2)) ||
+ (!strncmp(exe, "../", 3))) &&
+ ecore_file_can_exec(exe)) return EINA_TRUE;
EINA_LIST_FOREACH(__ecore_file_path_bin, l, dir)
{
diff --git a/src/lib/eina/eina_vpath.c b/src/lib/eina/eina_vpath.c
index ac2d6ca9e2..871612c64e 100644
--- a/src/lib/eina/eina_vpath.c
+++ b/src/lib/eina/eina_vpath.c
@@ -50,12 +50,10 @@ static char *
_fallback_runtime_dir(const char *home)
{
char buf[PATH_MAX];
-#if defined(HAVE_GETUID)
- uid_t uid = getuid();
-#endif
struct stat st;
-
#if defined(HAVE_GETUID) && defined(HAVE_GETEUID)
+ uid_t uid = getuid();
+
if (setuid(geteuid()) != 0)
{
fprintf(stderr,