From c31ad87bc6641d5dc3958237f4f23e5be4421982 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 29 Apr 2014 20:41:58 +0200 Subject: [PATCH] avformat/xwma: use NULL instead of 0 for pointers Signed-off-by: Michael Niedermayer --- libavformat/xwma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/xwma.c b/libavformat/xwma.c index e629b3f384..057e86c56f 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;