Commit 52ca4f8a by Carlos Martín Nieto

Use internal strtol

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
parent 631752aa
...@@ -386,12 +386,9 @@ int git_config_get_long(git_config *cfg, const char *name, long int *out) ...@@ -386,12 +386,9 @@ int git_config_get_long(git_config *cfg, const char *name, long int *out)
if (ret < GIT_SUCCESS) if (ret < GIT_SUCCESS)
return ret; return ret;
errno = 0; ret = git__strtol32(&num, value, &num_end, 0);
num = strtol(value, &num_end, 0); if (ret < GIT_SUCCESS)
return ret;
/* There was some error */
if (num_end == value || errno != 0)
return GIT_EINVALIDTYPE;
switch (*num_end) { switch (*num_end) {
case '\0': case '\0':
......
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