From 2c65b33b2169a1a40766d55f8eb6339e7b412794 Mon Sep 17 00:00:00 2001 From: Peter Wu Date: Sat, 7 Feb 2015 00:49:31 +0100 Subject: Fix RTP crash on RTP analysis attempt The tap listener was handling rtpstream_tapinfo_t* types while other users was expecting a GList* instead. Fix this and avoid future confusion by replacing void* pointers. Ping-Bug: 10714 Change-Id: I66f62eaaed4a529714264bbf4e7ad1e72b46ce5a Reviewed-on: https://code.wireshark.org/review/6997 Reviewed-by: Gerald Combs --- ui/rtp_stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/rtp_stream.c') diff --git a/ui/rtp_stream.c b/ui/rtp_stream.c index f188d0bd5b..11f41c15a5 100644 --- a/ui/rtp_stream.c +++ b/ui/rtp_stream.c @@ -56,7 +56,7 @@ static void rtpstream_draw(void *ti_ptr) g_signal_emit_by_name(top_level, "signal_rtpstream_update"); */ if (tapinfo && tapinfo->tap_draw) { - tapinfo->tap_draw(ti_ptr); + tapinfo->tap_draw(tapinfo); } return; } -- cgit v1.2.3