Module: libav
Branch: master
Commit: 9487ffd4c02b9e261562d43735490068c0df0d4b

Author:    James Almer <[email protected]>
Committer: Martin Storsjö <[email protected]>
Date:      Thu Jul 30 00:00:01 2015 -0300

rtmpproto: free hmac context properly

Signed-off-by: James Almer <[email protected]>
Signed-off-by: Martin Storsjö <[email protected]>

---

 libavformat/rtmpproto.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c
index 1db7495..ec4b0e7 100644
--- a/libavformat/rtmpproto.c
+++ b/libavformat/rtmpproto.c
@@ -971,7 +971,7 @@ int ff_rtmp_calc_digest(const uint8_t *src, int len, int 
gap,
     }
     av_hmac_final(hmac, dst, 32);
 
-    av_free(hmac);
+    av_hmac_free(hmac);
 
     return 0;
 }

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to