From 07ab49ef71a627452bcb14f62bdb08c0cc9ee49e Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Sat, 14 Jul 2001 12:19:56 +1000 Subject: - markus@cvs.openbsd.org 2001/07/10 21:49:12 [readpass.c] don't panic if fork or pipe fail (just return an empty passwd). --- readpass.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'readpass.c') diff --git a/readpass.c b/readpass.c index 4eeeed917..3724eeab1 100644 --- a/readpass.c +++ b/readpass.c @@ -32,7 +32,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: readpass.c,v 1.20 2001/07/02 22:29:20 markus Exp $"); +RCSID("$OpenBSD: readpass.c,v 1.21 2001/07/10 21:49:12 markus Exp $"); #include "xmalloc.h" #include "readpass.h" @@ -54,10 +54,14 @@ ssh_askpass(char *askpass, const char *msg) error("ssh_askpass: fflush: %s", strerror(errno)); if (askpass == NULL) fatal("internal error: askpass undefined"); - if (pipe(p) < 0) - fatal("ssh_askpass: pipe: %s", strerror(errno)); - if ((pid = fork()) < 0) - fatal("ssh_askpass: fork: %s", strerror(errno)); + if (pipe(p) < 0) { + error("ssh_askpass: pipe: %s", strerror(errno)); + return xstrdup(""); + } + if ((pid = fork()) < 0) { + error("ssh_askpass: fork: %s", strerror(errno)); + return xstrdup(""); + } if (pid == 0) { seteuid(getuid()); setuid(getuid()); -- cgit v1.2.3