From 5e9c67ea2050af9316e70d458c194eb4c560ea7b Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Tue, 12 Feb 2013 19:53:02 +0100 Subject: fix osmux-test-input ccid array was not initialized appropriately --- examples/osmux-test-input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/osmux-test-input.c b/examples/osmux-test-input.c index 67996ad..175633b 100644 --- a/examples/osmux-test-input.c +++ b/examples/osmux-test-input.c @@ -87,7 +87,7 @@ struct osmux_in_handle h_input = { #define MAX_CONCURRENT_CALLS 8 -static int ccid[MAX_CONCURRENT_CALLS]; +static int ccid[MAX_CONCURRENT_CALLS] = { -1, -1, -1, -1, -1, -1, -1, -1 }; static int get_ccid(uint32_t ssrc) { -- cgit v1.2.3