Commit c31ad87b authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/xwma: use NULL instead of 0 for pointers

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 03b88f6b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment