diff options
Diffstat (limited to 'nss/nss_files/files-parse.c')
-rw-r--r-- | nss/nss_files/files-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c index ff67e974aa..de456995a2 100644 --- a/nss/nss_files/files-parse.c +++ b/nss/nss_files/files-parse.c @@ -107,7 +107,7 @@ parse_list (char *line, struct parser_data *data, int datalen) char *eol, **list, **p; /* Find the end of the line buffer. */ - eol = strchr (line, '\0'); + eol = strchr (line, '\0') + 1; /* Adjust the pointer so it is aligned for storing pointers. */ eol += (eol - (char *) 0) % __alignof__ (char *); /* We will start the storage here for the vector of pointers. */ |