diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-04-12 11:31:23 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-12 11:31:23 -0700 |
commit | 684958ae6162c593bd90ba893271ffb2381c3c44 (patch) | |
tree | d3683319d78fb75d0d94cb2840768f401cba47e0 /commit.c | |
parent | 5ca64e488fcf4574fd1b52f7d523d9f31fbead4f (diff) | |
download | git-684958ae6162c593bd90ba893271ffb2381c3c44.tar.gz git-684958ae6162c593bd90ba893271ffb2381c3c44.tar.xz |
When showing a commit message, do not lose an incomplete line.
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -400,11 +400,11 @@ static int get_one_line(const char *msg, unsigned long len) while (len--) { char c = *msg++; + if (!c) + break; ret++; if (c == '\n') break; - if (!c) - return 0; } return ret; } |