[FFmpeg-cvslog] avformat/xwma: use NULL instead of 0 for pointers

Michael Niedermayer git at videolan.org
Tue Apr 29 21:51:17 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Tue Apr 29 20:41:58 2014 +0200| [c31ad87bc6641d5dc3958237f4f23e5be4421982] | committer: Michael Niedermayer

avformat/xwma: use NULL instead of 0 for pointers

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c31ad87bc6641d5dc3958237f4f23e5be4421982
---

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

diff --git a/libavformat/xwma.c b/libavformat/xwma.c
index e629b3f..057e86c 100644
--- a/libavformat/xwma.c
+++ b/libavformat/xwma.c
@@ -46,7 +46,7 @@ static int xwma_read_header(AVFormatContext *s)
     int64_t size;
     int ret;
     uint32_t dpds_table_size = 0;
-    uint32_t *dpds_table = 0;
+    uint32_t *dpds_table = NULL;
     unsigned int tag;
     AVIOContext *pb = s->pb;
     AVStream *st;



More information about the ffmpeg-cvslog mailing list