diff options
author | Edward Thomson <ethomson@github.com> | 2016-03-17 06:43:54 -0700 |
---|---|---|
committer | Edward Thomson <ethomson@github.com> | 2016-03-17 06:43:54 -0700 |
commit | 62e237e0314a8677bf2c39f4bdfd1a611e932c1b (patch) | |
tree | c646b98e4b080a8ef3c212072159ae8ac07b863f /src/commit.c | |
parent | de143efa88f6916af62cc5ed172e9cae4b194ae1 (diff) | |
parent | bf804d407e8d1fcff42e1113aa286270ae8925c0 (diff) | |
download | libgit2-62e237e0314a8677bf2c39f4bdfd1a611e932c1b.tar.gz |
Merge pull request #3693 from libgit2/cmn/extract-oneline-sig
commit: fix extraction of single-line signatures
Diffstat (limited to 'src/commit.c')
-rw-r--r-- | src/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commit.c b/src/commit.c index 9d675ac97..905407aac 100644 --- a/src/commit.c +++ b/src/commit.c @@ -726,7 +726,7 @@ int git_commit_extract_signature(git_buf *signature, git_buf *signed_data, git_r buf = git_odb_object_data(obj); - while ((h = strchr(buf, '\n')) && h[1] != '\0' && h[1] != '\n') { + while ((h = strchr(buf, '\n')) && h[1] != '\0') { h++; if (git__prefixcmp(buf, field)) { if (git_buf_put(signed_data, buf, h - buf) < 0) |