Skip to content

Commit

Permalink
Fixed threading bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
irungentoo committed Aug 4, 2014
1 parent 02ed20d commit 9445b40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toxav/toxav.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 9445b40

Please sign in to comment.