Commit 21ee6da7 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/hmac: Check av_hmac_alloc() return code

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1a10134e
......@@ -245,6 +245,8 @@ int main(void)
/* SHA-2 */
while (i <= AV_HMAC_SHA512) {
hmac = av_hmac_alloc(i);
if (!hmac)
return 1;
// RFC 4231 test vectors
test(hmac, key1, sizeof(key1), data1, sizeof(data1));
test(hmac, key2, sizeof(key2), data2, sizeof(data2));
......
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