mirror of
git://git.musl-libc.org/musl
synced 2025-03-11 06:07:29 +00:00
fix bogus lazy allocation in ctermid and missing malloc failure check
also clean up, optimize, and simplify the code, removing branches by simply pre-setting the result string to an empty string, which will be preserved if other operations fail.
This commit is contained in:
parent
cdf0f53f8b
commit
b6218764eb
@ -8,17 +8,14 @@
|
||||
|
||||
char *ctermid(char *s)
|
||||
{
|
||||
static char *s2;
|
||||
static char s2[L_ctermid];
|
||||
int fd;
|
||||
if (!s) {
|
||||
if (!s2) s2 = malloc(L_ctermid);
|
||||
s = s2;
|
||||
}
|
||||
if (!s) s = s2;
|
||||
*s = 0;
|
||||
fd = open("/dev/tty", O_WRONLY | O_NOCTTY | O_CLOEXEC);
|
||||
if (fd < 0)
|
||||
return strcpy(s, "");
|
||||
if (ttyname_r(fd, s, L_ctermid))
|
||||
strcpy(s, "");
|
||||
__syscall(SYS_close, fd);
|
||||
if (fd >= 0) {
|
||||
ttyname_r(fd, s, L_ctermid);
|
||||
__syscall(SYS_close, fd);
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user