libvlc: cache fix for mac_64

This commit is contained in:
Asethone
2023-07-28 20:12:44 +04:00
parent d29b90c636
commit dfd48c57d5
6 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
diff --git a/src/modules/bank.c b/src/modules/bank.c
index 2e67a0d07e..aeaf1860cb 100644
--- a/src/modules/bank.c
+++ b/src/modules/bank.c
@@ -275,8 +275,7 @@ static int AllocatePluginFile (module_bank_t *bank, const char *abspath,
plugin = vlc_cache_lookup(&bank->cache, relpath);
if (plugin != NULL
- && (plugin->mtime != (int64_t)st->st_mtime
- || plugin->size != (uint64_t)st->st_size))
+ && plugin->size != (uint64_t)st->st_size)
{
msg_Err(bank->obj, "stale plugins cache: modified %s",
plugin->abspath);