Browse Source

fix broken ttyname[_r] (failure to null-terminate result)

rs-1.0
Rich Felker 14 years ago
parent
commit
fcfba99503
  1. 5
      src/unistd/ttyname_r.c

5
src/unistd/ttyname_r.c

@ -15,5 +15,8 @@ int ttyname_r(int fd, char *name, size_t size)
if (l < 0) return errno;
else if (l == size) return ERANGE;
else return 0;
else {
name[l] = 0;
return 0;
}
}

Loading…
Cancel
Save