From 6675cd50bf68a9ccf3117cf88aea40c04c14a1d8 Mon Sep 17 00:00:00 2001 From: Mohamad Chaarawi Date: Wed, 16 Dec 2020 15:41:58 +0000 Subject: [PATCH] aiori-DFS: stat should not be fatal ior now expects stat to not be fatal. update the DFS driver to not exit if stat fails since the file can simply not exist. Signed-off-by: Mohamad Chaarawi --- src/aiori-DFS.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/aiori-DFS.c b/src/aiori-DFS.c index ac6cd1c..32b2960 100755 --- a/src/aiori-DFS.c +++ b/src/aiori-DFS.c @@ -945,7 +945,6 @@ DFS_Stat(const char *path, struct stat *buf, aiori_mod_opt_t * param) GERR("Failed to lookup parent dir"); rc = dfs_stat(dfs, parent, name, buf); - DCHECK(rc, "dfs_stat() of Failed (%d)", rc); if (name) free(name);