Changeset 58a1d71baee1aac656ff54356104261d780e4a6d
- Timestamp:
- 05/14/08 19:04:16
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210784656 +0300
- git-parent:
[82e52ea89110535cad86fac7ab77e17bc7101100]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210784656 +0300
- Message:
Remove useless constant
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r381904b |
r58a1d71 |
|
| 64 | 64 | |
|---|
| 65 | 65 | /***************************************************************************** |
|---|
| 66 | | * Constants |
|---|
| 67 | | *****************************************************************************/ |
|---|
| 68 | | |
|---|
| 69 | | const vlc_destructor_t kVLCDestructor = NULL; |
|---|
| 70 | | |
|---|
| 71 | | /***************************************************************************** |
|---|
| 72 | 66 | * Local prototypes |
|---|
| 73 | 67 | *****************************************************************************/ |
|---|
| … | … | |
| 171 | 165 | vlc_spin_init( &p_priv->ref_spin ); |
|---|
| 172 | 166 | p_priv->i_refcount = 1; |
|---|
| 173 | | p_priv->pf_destructor = kVLCDestructor; |
|---|
| | 167 | p_priv->pf_destructor = NULL; |
|---|
| 174 | 168 | p_priv->b_thread = false; |
|---|
| 175 | 169 | p_new->p_parent = NULL; |
|---|
| … | … | |
| 322 | 316 | vlc_object_internals_t *p_priv = vlc_internals( p_this ); |
|---|
| 323 | 317 | |
|---|
| 324 | | /* Automatically detach the object from its parents */ |
|---|
| | 318 | /* Automatically detach the object from its parent */ |
|---|
| 325 | 319 | if( p_this->p_parent ) vlc_object_detach( p_this ); |
|---|
| 326 | 320 | |
|---|