diff options
Diffstat (limited to 'toxav')
-rw-r--r-- | toxav/toxav.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toxav/toxav.c b/toxav/toxav.c index 219f4d8c..2d2bcd98 100644 --- a/toxav/toxav.c +++ b/toxav/toxav.c | |||
@@ -174,12 +174,12 @@ ToxAv *toxav_new( Tox *messenger, int32_t max_calls) | |||
174 | av->calls = calloc(sizeof(CallSpecific), max_calls); | 174 | av->calls = calloc(sizeof(CallSpecific), max_calls); |
175 | av->max_calls = max_calls; | 175 | av->max_calls = max_calls; |
176 | 176 | ||
177 | pthread_t temp; | ||
178 | pthread_create(&temp, NULL, toxav_decoding, av); | ||
179 | |||
180 | pthread_mutex_init(&av->decode_cond_mutex, NULL); | 177 | pthread_mutex_init(&av->decode_cond_mutex, NULL); |
181 | pthread_cond_init(&av->decode_cond, NULL); | 178 | pthread_cond_init(&av->decode_cond, NULL); |
182 | 179 | ||
180 | pthread_t temp; | ||
181 | pthread_create(&temp, NULL, toxav_decoding, av); | ||
182 | |||
183 | return av; | 183 | return av; |
184 | } | 184 | } |
185 | 185 | ||