зеркало из https://github.com/microsoft/git.git
commit.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>
This commit is contained in:
Родитель
d7dffce1ce
Коммит
9c9b03b1f1
3
commit.c
3
commit.c
|
@ -415,8 +415,7 @@ int find_commit_subject(const char *commit_buffer, const char **subject)
|
|||
p++;
|
||||
if (*p) {
|
||||
p = skip_blank_lines(p + 2);
|
||||
for (eol = p; *eol && *eol != '\n'; eol++)
|
||||
; /* do nothing */
|
||||
eol = strchrnul(p, '\n');
|
||||
} else
|
||||
eol = p;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче