From 33ee0cfb190a883229d0824d7194898fd8966ceb Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 16 Jun 2006 23:07:42 +0000 Subject: [PATCH] r16320: Ensure variable is not null before calling fclose. Klocwork #412. Jeremy. --- source/lib/replace/getpass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/replace/getpass.c b/source/lib/replace/getpass.c index c67ff2bda77..dace5fbb8a2 100644 --- a/source/lib/replace/getpass.c +++ b/source/lib/replace/getpass.c @@ -218,7 +218,7 @@ char *getsmbpass(const char *prompt) fprintf(out, "\n"); fflush(out); - if (in != stdin) /* We opened the terminal; now close it. */ + if (in && in != stdin) /* We opened the terminal; now close it. */ fclose(in); /* Catch problematic signals */ -- 2.34.1