Commit ccaee222 by Brad Morgan

Added GITERR_CHECK_ALLOC

parent e057e411
...@@ -148,15 +148,11 @@ int git_cred_ssh_publickey_new( ...@@ -148,15 +148,11 @@ int git_cred_ssh_publickey_new(
c->parent.free = ssh_publickey_free; c->parent.free = ssh_publickey_free;
c->publickey = git__malloc(publickey_len); c->publickey = git__malloc(publickey_len);
GITERR_CHECK_ALLOC(c->publickey);
memcpy(c->publickey, publickey, publickey_len); memcpy(c->publickey, publickey, publickey_len);
if (!c->publickey) {
git__free(c);
return -1;
}
c->publickey_len = publickey_len; c->publickey_len = publickey_len;
c->sign_callback = sign_callback; c->sign_callback = sign_callback;
c->sign_data = sign_data; c->sign_data = sign_data;
......
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