When showing a commit message, do not lose an incomplete line.
authorLinus Torvalds <torvalds@osdl.org>
Wed, 12 Apr 2006 18:31:23 +0000 (11:31 -0700)
committerJunio C Hamano <junkio@cox.net>
Wed, 12 Apr 2006 18:31:23 +0000 (11:31 -0700)
commit.c

index d534c9b..c7bb8db 100644 (file)
--- a/commit.c
+++ b/commit.c
@@ -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;
 }