From b9c08d5ebe6eac09541007a76ccad941939fbfc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Fri, 18 Dec 2009 15:52:45 +0000 Subject: [PATCH] Fix obvious bug --- src/iptv_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iptv_input.c b/src/iptv_input.c index bd359bf3..75c9db14 100644 --- a/src/iptv_input.c +++ b/src/iptv_input.c @@ -172,7 +172,7 @@ iptv_thread(void *aux) continue; for(j = 0; j < r; j += 188) - iptv_ts_input(t, tsb + j); + iptv_ts_input(t, buf + j); } pthread_mutex_unlock(&iptv_recvmutex); }