Commit 69a09b7c by Vicent Marti

Fix wrong pointer check in git__strdup

Signed-off-by: Vicent Marti <tanoku@gmail.com>
parent c3dd69a9
...@@ -22,7 +22,7 @@ void *git__calloc(size_t a, size_t b) ...@@ -22,7 +22,7 @@ void *git__calloc(size_t a, size_t b)
char *git__strdup(const char *s) char *git__strdup(const char *s)
{ {
char *r = strdup(s); char *r = strdup(s);
if (!s) if (!r)
return git_ptr_error(GIT_ENOMEM); return git_ptr_error(GIT_ENOMEM);
return r; return r;
} }
......
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