Browse Source

avutil/aes_crt: free AVAESCTR struct properly

Reviewed-by: Andreas Cadhalpun <andreas.cadhalpun@googlemail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
tags/n3.0
James Almer 10 years ago
parent
commit
0711c5bfb8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/aes_ctr.c

+ 1
- 1
libavutil/aes_ctr.c View File

@@ -79,7 +79,7 @@ void av_aes_ctr_free(struct AVAESCTR *a)
{
if (a) {
av_freep(&a->aes);
av_freep(a);
av_free(a);
}
}



Loading…
Cancel
Save