Use strchrnul() instead of strchr() plus manual workaround

Also gets rid of a C++ comment.

Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
maint
Johan Herland 2008-09-28 00:24:36 +02:00 committed by Shawn O. Pearce
parent 175a494823
commit 94e02e7f3b
1 changed files with 1 additions and 3 deletions

View File

@ -320,9 +320,7 @@ static const char *find_wholine(const char *who, int wholen, const char *buf, un


static const char *copy_line(const char *buf) static const char *copy_line(const char *buf)
{ {
const char *eol = strchr(buf, '\n'); const char *eol = strchrnul(buf, '\n');
if (!eol) // simulate strchrnul()
eol = buf + strlen(buf);
return xmemdupz(buf, eol - buf); return xmemdupz(buf, eol - buf);
} }