smart_pkt: check buffer with GITERR_CHECK_ALLOC_BUF

This commit is contained in:
Patrick Steinhardt 2016-02-23 11:45:43 +01:00
parent 42c05ed56b
commit 6e2a37556d

View File

@ -543,7 +543,9 @@ static int buffer_want_with_caps(const git_remote_head *head, transport_smart_ca
"%04xwant %s %s\n", (unsigned int)len, oid, git_buf_cstr(&str));
git_buf_free(&str);
return git_buf_oom(buf);
GITERR_CHECK_ALLOC_BUF(buf);
return 0;
}
/*