Fix wrong pointer check in git__strdup

Signed-off-by: Vicent Marti <tanoku@gmail.com>
This commit is contained in:
Vicent Marti 2010-11-19 17:17:46 +02:00
parent c3dd69a9e1
commit 69a09b7c69

View File

@ -22,7 +22,7 @@ void *git__calloc(size_t a, size_t b)
char *git__strdup(const char *s)
{
char *r = strdup(s);
if (!s)
if (!r)
return git_ptr_error(GIT_ENOMEM);
return r;
}