From ef0baec389032b63cb47019f60f2817cc3b3024f Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 19 May 2022 14:08:10 -0400 Subject: Fix uninit read when checking if bindPath is a directory --- bounce.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bounce.c b/bounce.c index 4146c0e..9ab0f1d 100644 --- a/bounce.c +++ b/bounce.c @@ -261,8 +261,9 @@ int main(int argc, char *argv[]) { if (bindPath[0]) { struct stat st; int error = stat(bindPath, &st); - if (error && errno != ENOENT) err(EX_CANTCREAT, "%s", bindPath); - if (S_ISDIR(st.st_mode)) { + if (error) { + if (errno != ENOENT) err(EX_CANTCREAT, "%s", bindPath); + } else if (S_ISDIR(st.st_mode)) { size_t len = strlen(bindPath); snprintf(&bindPath[len], sizeof(bindPath) - len, "/%s", bindHost); } -- cgit 1.4.1