From b53ae6e03ed78a652d6308517262ca8874724298 Mon Sep 17 00:00:00 2001 From: Robert Date: Sat, 24 Oct 2009 15:59:06 +0000 Subject: [PATCH] fixed abnormal program termination in streaming_msg_free if sm_type is SMT_NOSOURCE --- src/streaming.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/streaming.c b/src/streaming.c index 946d2aa4..92225bbf 100644 --- a/src/streaming.c +++ b/src/streaming.c @@ -221,6 +221,9 @@ streaming_msg_free(streaming_message_t *sm) case SMT_TRANSPORT_STATUS: break; + case SMT_NOSOURCE: + break; + default: abort(); }