| 12028:7947324d83de | 12029:e47434c9f4af |
|---|---|
| 187 int ms_sync_uninit(MSSync *sync) | 187 int ms_sync_uninit(MSSync *sync) |
| 188 { | 188 { |
| 189 g_mutex_free(sync->lock); | 189 g_mutex_free(sync->lock); |
| 190 g_cond_free(sync->thread_cond); | 190 g_cond_free(sync->thread_cond); |
| 191 g_cond_free(sync->stop_cond); | 191 g_cond_free(sync->stop_cond); |
| 192 | |
| 193 /* I have no idea if this is right, but nothing in media streamer is | |
| 194 * calling this, so it should be ok. -- Gary | |
| 195 */ | |
| 196 return 0; | |
| 192 } | 197 } |
| 193 | 198 |