mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/hmac: Check av_hmac_alloc() return code
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1a10134e20
commit
21ee6da70c
|
@ -245,6 +245,8 @@ int main(void)
|
||||||
/* SHA-2 */
|
/* SHA-2 */
|
||||||
while (i <= AV_HMAC_SHA512) {
|
while (i <= AV_HMAC_SHA512) {
|
||||||
hmac = av_hmac_alloc(i);
|
hmac = av_hmac_alloc(i);
|
||||||
|
if (!hmac)
|
||||||
|
return 1;
|
||||||
// RFC 4231 test vectors
|
// RFC 4231 test vectors
|
||||||
test(hmac, key1, sizeof(key1), data1, sizeof(data1));
|
test(hmac, key1, sizeof(key1), data1, sizeof(data1));
|
||||||
test(hmac, key2, sizeof(key2), data2, sizeof(data2));
|
test(hmac, key2, sizeof(key2), data2, sizeof(data2));
|
||||||
|
|
Loading…
Reference in New Issue