Commit 1e7b7523 by Xavier L

git_oid_fromstrn already sets a maximum on the length of the string

parent 7e527ca7
...@@ -53,7 +53,7 @@ int git_oid_fromstrn(git_oid *out, const char *str, size_t length) ...@@ -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) 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) int git_oid_fromstr(git_oid *out, const char *str)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment