mirror of
https://github.com/Yubico/yubico-pam.git
synced 2025-02-01 01:52:17 +01:00
Merge branch 'pr-165'
This commit is contained in:
commit
05f74ea8e5
@ -833,7 +833,9 @@ parse_cfg (int flags, int argc, const char **argv, struct cfg *cfg)
|
||||
if (file)
|
||||
{
|
||||
cfg->debug_file = file;
|
||||
}
|
||||
} else {
|
||||
close(fd);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
1
util.c
1
util.c
@ -203,6 +203,7 @@ int generate_random(void *buf, int len)
|
||||
|
||||
u = fdopen(fd, "r");
|
||||
if (!u) {
|
||||
close(fd);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -258,6 +258,7 @@ do_add_hmac_chalresp(YK_KEY *yk, uint8_t slot, bool verbose, char *output_dir, u
|
||||
f = fdopen (fd, "w");
|
||||
if (! f) {
|
||||
fprintf (stderr, "fdopen: %s\n", strerror (errno));
|
||||
close(fd);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user