LibC: Lock file during gets

This commit is contained in:
Bananymous 2025-04-01 23:18:42 +03:00
parent b9da6a4a5d
commit 04463675c0
1 changed files with 1 additions and 0 deletions

View File

@ -611,6 +611,7 @@ ssize_t getline(char** __restrict lineptr, size_t* __restrict n, FILE* __restric
char* gets(char* buffer)
{
ScopeLock _(stdin);
if (stdin->eof)
return nullptr;