Thread (22 messages) flat view 22 messages, 3 authors, 2016-06-16

Re: [PATCH v2 01/12] commit.c: use strchrnul() to scan for one line

From: Stefan Beller <hidden>
Date: 2016-06-16 02:19:25

On Mon, May 16, 2016 at 4:41 PM, Junio C Hamano [off-list ref] wrote:
On Mon, May 16, 2016 at 4:19 PM, Stefan Beller [off-list ref] wrote:
quoted
quoted
        if (*p) {
                p += 2;
-               for (eol = p; *eol && *eol != '\n'; eol++)
-                       ; /* do nothing */
+               eol = strchrnul(p, '\n');
Nit:
You could include the +2 into the arg of  strchrnul,
such that you can drop the braces.
You're right. With or without braces,

  eol = strchrnul(p + 2, '\n');

would be easier to understand (I do not know offhand if the value of p
matters after this part, as I am responding from GMail Web UI without
access to the wider context in the source, though).
Heh, good point, I did not think it through apparently. `p` matters.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help