Commit 3546fd49 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove write-only module_bank_t.b_cache_dirty

parent 99cb4886
......@@ -104,7 +104,7 @@ void module_InitBank( vlc_object_t *p_this )
p_bank->i_usage = 1;
p_bank->i_cache = p_bank->i_loaded_cache = 0;
p_bank->pp_cache = p_bank->pp_loaded_cache = NULL;
p_bank->b_cache = p_bank->b_cache_dirty = false;
p_bank->b_cache = false;
p_bank->head = NULL;
/* Everything worked, attach the object */
......
......@@ -37,7 +37,6 @@ typedef struct module_bank_t
/* Plugins cache */
bool b_cache;
bool b_cache_dirty;
int i_cache;
module_cache_t **pp_cache;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment