[systemd-commits] src/ask-password.c
Lennart Poettering
lennart at kemper.freedesktop.org
Mon Sep 20 15:30:48 PDT 2010
src/ask-password.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 3e21c85da365f66582d77eb0a81016c7f43c7762
Author: Luis Felipe Strano Moraes <luis.strano at gmail.com>
Date: Thu Sep 16 23:30:01 2010 -0300
ask-password. Initializing socket_fd inside ask_agent.
Garbage value could have been used if there was an error creating the
password file.
diff --git a/src/ask-password.c b/src/ask-password.c
index 22dda97..bcee686 100644
--- a/src/ask-password.c
+++ b/src/ask-password.c
@@ -171,7 +171,7 @@ static int ask_agent(void) {
int fd = -1, r;
FILE *f = NULL;
char *socket_name = NULL;
- int socket_fd, signal_fd;
+ int socket_fd = -1, signal_fd;
sigset_t mask;
usec_t not_after;
More information about the systemd-commits
mailing list