Changeset a8c44b836bd56fa4676f4fe18a73ee166aa0516a
- Timestamp:
- 05/08/08 22:08:46
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210277326 +0300
- git-parent:
[dcba3caef3c0fabf88ef7acc14fdbacc21f43ca3]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210276789 +0300
- Message:
module bank: use vlc_custom_create
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0669643 |
ra8c44b8 |
|
| 124 | 124 | if( p_libvlc_global->p_module_bank == NULL ) |
|---|
| 125 | 125 | { |
|---|
| 126 | | p_bank = vlc_object_create( p_this, sizeof(module_bank_t) ); |
|---|
| 127 | | p_bank->psz_object_name = strdup( "module bank" ); |
|---|
| | 126 | p_bank = vlc_custom_create( p_this, sizeof(module_bank_t), |
|---|
| | 127 | VLC_OBJECT_GENERIC, "module bank"); |
|---|
| 128 | 128 | p_bank->i_usage = 1; |
|---|
| 129 | 129 | p_bank->i_cache = p_bank->i_loaded_cache = 0; |
|---|