mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
libvlc: cache fix for mac_64
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
14
Common/3dParty/libvlc/tools/cache.patch
Normal file
14
Common/3dParty/libvlc/tools/cache.patch
Normal 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);
|
||||
Reference in New Issue
Block a user