rimmed pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=dc18e7190355c933dfb1c2e25d405489566114ef
commit dc18e7190355c933dfb1c2e25d405489566114ef Author: Vyacheslav Reutskiy <v.reuts...@samsung.com> Date: Wed Nov 23 16:06:43 2016 +0200 ecore_file: get stat from correct file --- src/lib/ecore_file/ecore_file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/ecore_file/ecore_file.c b/src/lib/ecore_file/ecore_file.c index 1b8b10a..f2b5de1 100644 --- a/src/lib/ecore_file/ecore_file.c +++ b/src/lib/ecore_file/ecore_file.c @@ -331,7 +331,8 @@ ecore_file_recursive_rm(const char *dir) if (readlink(dir, buf, sizeof(buf) - 1) > 0) return ecore_file_unlink(dir); - if (!_ecore_file_stat(buf, NULL, NULL, NULL, &is_dir, NULL)) + + if (!_ecore_file_stat(dir, NULL, NULL, NULL, &is_dir, NULL)) return EINA_FALSE; #else if (lstat(dir, &st) == -1) --