You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
crypto: fix potential double free
This commit is contained in:
committed by
Michael Niedermayer
parent
1e9b302690
commit
7d89f7cbf3
@@ -97,8 +97,8 @@ static int crypto_open(URLContext *h, const char *uri, int flags)
|
||||
|
||||
return 0;
|
||||
err:
|
||||
av_free(c->key);
|
||||
av_free(c->iv);
|
||||
av_freep(c->key);
|
||||
av_freep(c->iv);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -157,8 +157,6 @@ static int crypto_close(URLContext *h)
|
||||
if (c->hd)
|
||||
ffurl_close(c->hd);
|
||||
av_freep(&c->aes);
|
||||
av_freep(&c->key);
|
||||
av_freep(&c->iv);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user