summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2014-08-04 12:09:03 -0400
committerirungentoo <irungentoo@gmail.com>2014-08-04 12:09:03 -0400
commit9445b40fb55d6d7ed9da3744de6fcabc61963167 (patch)
tree64c1712aade5c0b91f80a9ef6cd784bc7fd14304
parent02ed20dc39932130e210301e5850a948d33f1136 (diff)
Fixed threading bug.
-rw-r--r--toxav/toxav.c2
1 files changed, 1 insertions, 1 deletions
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)
959 CallSpecific *call = pp[1]; 959 CallSpecific *call = pp[1];
960 free(pp); 960 free(pp);
961 961
962 while (!call->exit) { 962 while (1) {
963 DECODE_PACKET *p; 963 DECODE_PACKET *p;
964 _Bool video = 0; 964 _Bool video = 0;
965 965