diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-22 03:06:13 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-22 03:06:13 -0700 |
commit | 53f420ef00ca6cc3554084c4c9fb89f50c634f58 (patch) | |
tree | eff5820045f606d64722c500697d6b3e26d65b06 /commit.c | |
parent | 91efcf60653b2538b05625807293b97c07cb04f4 (diff) | |
download | git-53f420ef00ca6cc3554084c4c9fb89f50c634f58.tar.gz git-53f420ef00ca6cc3554084c4c9fb89f50c634f58.tar.xz |
git-fmt-patch: thinkofix to show [PATCH] properly.
Updating "subject" variable without changing the hardcoded
number of bytes to memcpy from it would not help much.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'commit.c')
-rw-r--r-- | commit.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -574,8 +574,9 @@ unsigned long pretty_print_commit(enum cmit_fmt fmt, const struct commit *commit } if (subject) { - memcpy(buf + offset, subject, 9); - offset += 9; + int slen = strlen(subject); + memcpy(buf + offset, subject, slen); + offset += slen; } memset(buf + offset, ' ', indent); memcpy(buf + offset + indent, line, linelen); |