Find places where we scan a string twice unnecessarily, once with
strchr() and then with strlen(), e.g.

        const char *colon = strchr(name, ':');
        int namelen = colon ? colon - name : strlen(name);

and rewrite such a pattern using strchrnul() as appropriate.

The above example can become

        const char *colon = strchrnul(name, ':');
        int namelen = colon - name;

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to