Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
a9eeb553
Commit
a9eeb553
authored
Jan 28, 2008
by
Rafaël Carré
Browse files
modules CacheFind(): remove unused parameter
parent
38d7da29
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/modules/cache.c
View file @
a9eeb553
...
...
@@ -700,7 +700,7 @@ void CacheMerge( vlc_object_t *p_this, module_t *p_cache, module_t *p_module )
/*****************************************************************************
* CacheFind: finds the cache entry corresponding to a file
*****************************************************************************/
module_cache_t
*
CacheFind
(
vlc_object_t
*
p_this
,
const
char
*
psz_file
,
module_cache_t
*
CacheFind
(
const
char
*
psz_file
,
int64_t
i_time
,
int64_t
i_size
)
{
module_cache_t
**
pp_cache
;
...
...
src/modules/modules.c
View file @
a9eeb553
...
...
@@ -1084,7 +1084,7 @@ static int AllocatePluginFile( vlc_object_t * p_this, char * psz_file,
* Check our plugins cache first then load plugin if needed
*/
p_cache_entry
=
CacheFind
(
p_this
,
psz_file
,
i_file_time
,
i_file_size
);
CacheFind
(
psz_file
,
i_file_time
,
i_file_size
);
if
(
!
p_cache_entry
)
{
...
...
src/modules/modules.h
View file @
a9eeb553
...
...
@@ -163,6 +163,6 @@ void module_Unload (module_handle_t);
void
CacheMerge
(
vlc_object_t
*
,
module_t
*
,
module_t
*
);
void
CacheLoad
(
vlc_object_t
*
);
void
CacheSave
(
vlc_object_t
*
);
module_cache_t
*
CacheFind
(
vlc_object_t
*
,
const
char
*
,
int64_t
,
int64_t
);
module_cache_t
*
CacheFind
(
const
char
*
,
int64_t
,
int64_t
);
#endif
/* !__LIBVLC_MODULES_H */
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment