Changeset 255107d021c93807ec87137c92ad0083c2436da1
- Timestamp:
- 08/16/07 21:06:22
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1187291182 +0000
- git-parent:
[25fd4bfdc8ec2fc713f8bd66525ada82743f9080]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1187291182 +0000
- Message:
No need to check b_thread... there is ALWAYS a thread here
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9025fab |
r255107d |
|
| 290 | 290 | bonjour_t *p_sys = (bonjour_t *)_p_sys; |
|---|
| 291 | 291 | |
|---|
| 292 | | if( p_sys->poll_thread->b_thread ) |
|---|
| 293 | | { |
|---|
| 294 | | vlc_object_kill( p_sys->poll_thread ); |
|---|
| 295 | | vlc_thread_join( p_sys->poll_thread ); |
|---|
| 296 | | } |
|---|
| 297 | | |
|---|
| | 292 | vlc_object_kill( p_sys->poll_thread ); |
|---|
| | 293 | vlc_thread_join( p_sys->poll_thread ); |
|---|
| 298 | 294 | vlc_object_destroy( p_sys->poll_thread ); |
|---|
| 299 | 295 | |
|---|