1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

More optimizations of nss_files

This commit is contained in:
Ulrich Drepper
2011-08-20 15:55:44 -04:00
parent 89f447edba
commit 775a77e7e4
3 changed files with 9 additions and 8 deletions

View File

@@ -335,7 +335,7 @@ get_next_alias (const char *match, struct aliasent *result,
just read character. */
int ch;
ch = fgetc (stream);
ch = fgetc_unlocked (stream);
if (ch == EOF || ch == '\n' || !isspace (ch))
{
size_t cnt;