From 84f0aba18dc8815c5cd408238909e4dc8b60684f Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 7 Jan 2010 23:05:19 +0000 Subject: handler can be NULL if we did not support this dynamic format (codec). Fixes issue 1658 (the crasher), although the format itself is obviously still unsupported. Originally committed as revision 21078 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rdt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rdt.c') diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 24ee6a993d..fa909e6023 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -67,7 +67,7 @@ ff_rdt_parse_open(AVFormatContext *ic, int first_stream_of_set_idx, s->prev_set_id = -1; s->prev_stream_id = -1; s->prev_timestamp = -1; - s->parse_packet = handler->parse_packet; + s->parse_packet = handler ? handler->parse_packet : NULL; s->dynamic_protocol_context = priv_data; return s; -- cgit v1.2.3