diff options
| author | Sim Domingo <sim@github.com> | 2016-06-09 22:50:53 +0800 |
|---|---|---|
| committer | Edward Thomson <ethomson@github.com> | 2016-06-20 11:15:23 -0400 |
| commit | 2076d3291c6c65d58cab8154b9b08b2758b201c3 (patch) | |
| tree | 0fe434e0be5675af33c133f59ef692d8100528a9 /src | |
| parent | f0ee795ccb552b87637c7973ac64f64437baa041 (diff) | |
| download | libgit2-2076d3291c6c65d58cab8154b9b08b2758b201c3.tar.gz | |
fix error message SHA truncation in git_odb__error_notfound()
Diffstat (limited to 'src')
| -rw-r--r-- | src/odb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1362,7 +1362,7 @@ int git_odb__error_notfound( { if (oid != NULL) { char oid_str[GIT_OID_HEXSZ + 1]; - git_oid_tostr(oid_str, oid_len, oid); + git_oid_tostr(oid_str, oid_len+1, oid); giterr_set(GITERR_ODB, "Object not found - %s (%.*s)", message, oid_len, oid_str); } else |
