Browse Source

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

Rich Felker 12 years ago
parent
commit
fcfba99503
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/unistd/ttyname_r.c

+ 4 - 1
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;
+	}
 }