grep: plug a trivial memory leak
[gitweb.git] / commit.c
index 2cf85158b4899b664a3cbae8d0777f5a9e473318..0c4ee3de4228384d752a429f85b739864c26f457 100644 (file)
--- a/commit.c
+++ b/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;