pretty: simplify input line length calculation in pp_user_info()
commit30e77bcb5008d1947c721fb084e21eeaa591c45e
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>
Thu, 25 Apr 2013 19:40:25 +0000 (25 21:40 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 25 Apr 2013 22:02:51 +0000 (25 15:02 -0700)
tree5e4cf4c72115b69ac0e96cfa2b7a6f763c41c50d
parentde5abe9fe91a496d019d62abefe23df9d72fad30
pretty: simplify input line length calculation in pp_user_info()

Instead of searching for LF and NUL with two strchr() calls use a single
strchrnul() call.  We don't need to check if the returned pointer is NULL
because either we'll find the NUL at the end of line, or the caller
forgot to NUL-terminate the string and we'll overrun the buffer in any
case.  Also we don't need to pass LF or NUL to split_ident_line() as it
ignores it anyway.

Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
pretty.c