1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fix Coverity ID 554

This commit is contained in:
Volker Lendecke 2008-03-15 22:27:05 +01:00
parent 44122f06d0
commit 471b1b0c58

View File

@ -187,6 +187,9 @@ char *rep_getpass(const char *prompt)
in_fd = fileno(in);
if (fgets(buf, bufsize, in) == NULL) {
buf[0] = 0;
if (in && in != stdin) {
fclose(in);
}
return buf;
}
}