From 9445b40fb55d6d7ed9da3744de6fcabc61963167 Mon Sep 17 00:00:00 2001 From: irungentoo Date: Mon, 4 Aug 2014 12:09:03 -0400 Subject: Fixed threading bug. --- toxav/toxav.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toxav/toxav.c b/toxav/toxav.c index efc877d6..351ec183 100644 --- a/toxav/toxav.c +++ b/toxav/toxav.c @@ -959,7 +959,7 @@ static void *toxav_decoding(void *arg) CallSpecific *call = pp[1]; free(pp); - while (!call->exit) { + while (1) { DECODE_PACKET *p; _Bool video = 0; -- cgit v1.2.3