mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-04 05:57:49 +02:00
crypto: Use av_freep instead of av_free
Using av_freep is generally good practice. Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
50f7c29646
commit
ac9cf2e5c4
@ -153,9 +153,9 @@ static int crypto_close(URLContext *h)
|
|||||||
CryptoContext *c = h->priv_data;
|
CryptoContext *c = h->priv_data;
|
||||||
if (c->hd)
|
if (c->hd)
|
||||||
ffurl_close(c->hd);
|
ffurl_close(c->hd);
|
||||||
av_free(c->aes);
|
av_freep(&c->aes);
|
||||||
av_free(c->key);
|
av_freep(&c->key);
|
||||||
av_free(c->iv);
|
av_freep(&c->iv);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user