diff options
Diffstat (limited to 'src/oid.c')
-rw-r--r-- | src/oid.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -36,6 +36,9 @@ int git_oid_fromstrn(git_oid *out, const char *str, size_t length) size_t p; int v; + if (length < 4) + return git__throw(GIT_ENOTOID, "Failed to generate sha1. Given string is too short"); + if (length > GIT_OID_HEXSZ) length = GIT_OID_HEXSZ; |