From f3626b3090ceb81bb16f4a8a5f21486347b690de Mon Sep 17 00:00:00 2001 From: "mykola.salomatin" Date: Fri, 18 Dec 2020 19:29:03 +0200 Subject: [MTX-3769] Conduit 300: New Capability - TPM --- include/Utility/Utility.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/Utility/Utility.h b/include/Utility/Utility.h index 4fb54df..8d68baa 100644 --- a/include/Utility/Utility.h +++ b/include/Utility/Utility.h @@ -70,13 +70,13 @@ inline mode_t findFileGlob(std::string file) { mode_t result = -1; if (0 == glob(file.c_str(), 0, NULL, &gl)) { - if (0 < gl.gl_pathc && 0 == stat(gl.gl_pathv[0], &buf)) { - result = buf.st_mode & S_IFMT; - } - globfree(&gl); + if (0 < gl.gl_pathc && 0 == stat(gl.gl_pathv[0], &buf)) { + result = buf.st_mode & S_IFMT; + } + globfree(&gl); } - return result; + return result; } #endif /* UTILITIES_H_ */ -- cgit v1.2.3