rev-list: handle %x00 NUL in user format
commit9130ac9fe17831445690ebbb60f09b86f96516b3
authorJeff King <peff@peff.net>
Thu, 7 Oct 2010 18:25:43 +0000 (7 14:25 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Oct 2010 01:58:33 +0000 (13 18:58 -0700)
tree36e2c5204978d544b6277526e5a31157acb818c9
parent7c6eafa35af805578990e76b691ff7f1a25a3c57
rev-list: handle %x00 NUL in user format

The code paths for showing commits in "git log" and "git
rev-list --graph" correctly handle embedded NULs by looking
only at the resulting strbuf's length, and never treating it
as a C string. The code path for regular rev-list, however,
used printf("%s"), which resulted in truncated output. This
patch uses fwrite instead, like the --graph code path.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/rev-list.c
t/t4012-diff-binary.sh
t/t6006-rev-list-format.sh
t/test-lib.sh