The free function of a depacketizer won't be called if data is NULL.
---
 libavformat/rtpdec_h263_rfc2190.c | 2 --
 libavformat/rtpdec_latm.c         | 2 --
 2 files changed, 4 deletions(-)

diff --git a/libavformat/rtpdec_h263_rfc2190.c 
b/libavformat/rtpdec_h263_rfc2190.c
index a7e8287..ae6e38e 100644
--- a/libavformat/rtpdec_h263_rfc2190.c
+++ b/libavformat/rtpdec_h263_rfc2190.c
@@ -41,8 +41,6 @@ struct PayloadContext {
 
 static void h263_free_context(PayloadContext *data)
 {
-    if (!data)
-        return;
     if (data->buf) {
         uint8_t *p;
         avio_close_dyn_buf(data->buf, &p);
diff --git a/libavformat/rtpdec_latm.c b/libavformat/rtpdec_latm.c
index 9758efa..2da0fbf 100644
--- a/libavformat/rtpdec_latm.c
+++ b/libavformat/rtpdec_latm.c
@@ -33,8 +33,6 @@ struct PayloadContext {
 
 static void latm_free_context(PayloadContext *data)
 {
-    if (!data)
-        return;
     if (data->dyn_buf) {
         uint8_t *p;
         avio_close_dyn_buf(data->dyn_buf, &p);
-- 
1.9.3 (Apple Git-50)

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

Reply via email to