diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-01-27 18:01:42 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-01 13:46:51 -0800 |
commit | 263434f20c20b193c1ef956eda43458b7f350eaa (patch) | |
tree | 7d357f279f17e600f0b7342af11227db4602b417 /attr.c | |
parent | 9c9b03b1f1fa84f4a723aac962e1126d27de4a4f (diff) | |
download | git-263434f20c20b193c1ef956eda43458b7f350eaa.tar.gz |
attr.c: use strchrnul() to scan for one line
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'attr.c')
-rw-r--r-- | attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -402,8 +402,8 @@ static struct attr_stack *read_attr_from_index(const char *path, int macro_ok) for (sp = buf; *sp; ) { char *ep; int more; - for (ep = sp; *ep && *ep != '\n'; ep++) - ; + + ep = strchrnul(sp, '\n'); more = (*ep == '\n'); *ep = '\0'; handle_attr_line(res, sp, path, ++lineno, macro_ok); |