git_oid_fromstrn already sets a maximum on the length of the string

This commit is contained in:
Xavier L 2013-03-21 12:30:08 -04:00
parent 7e527ca700
commit 1e7b752375

View File

@ -53,7 +53,7 @@ int git_oid_fromstrn(git_oid *out, const char *str, size_t length)
int git_oid_fromstrp(git_oid *out, const char *str)
{
return git_oid_fromstrn(out, str, min(strlen(str), GIT_OID_HEXSZ));
return git_oid_fromstrn(out, str, strlen(str));
}
int git_oid_fromstr(git_oid *out, const char *str)