diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-09-07 18:17:16 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-09-07 18:18:53 +0200 |
commit | 186b116bec11cb941ed91547c9f612b96c96341b (patch) | |
tree | e1c836620c714bcdca219e2ba1eb022217305386 /curvetun.c | |
parent | 047d69c4eb2cefe9bab654fb570592d3863da792 (diff) |
curvetun: Don't attempt to close negative file descriptor
Complete fix for Coverity issue CID 991822, commit 047d69c4e ("curvetun:
Fix issues detected by the Coverity scanner") only fixed one instance of
this issue.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'curvetun.c')
-rw-r--r-- | curvetun.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -347,7 +347,7 @@ static void check_config_keypair_or_die(char *home) if (fd < 0) { err = EIO; errstr = "Cannot open pubkey file!\n"; - goto out; + goto out_noclose; } ret = read(fd, publickey, sizeof(publickey)); |