summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2025-10-10 16:57:52 +0800
committerErik Kundiman <erik@megapahit.org>2025-10-10 16:57:52 +0800
commit081a44dcbc604beb142c208f540bdbc95e754634 (patch)
tree7331187c5196e199d38215d12b2c951983a5dc58
parent413258683b116032909373c9613a88d44016dce1 (diff)
Fix CEF media plugin failing to load on openSUSE
Somehow the absence of the variable declaration would break CEF media plugin on openSUSE Tumbleweed (and not on other supported distros), when it's not even used any more anywhere else.
-rw-r--r--indra/media_plugins/cef/media_plugin_cef.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/media_plugins/cef/media_plugin_cef.cpp b/indra/media_plugins/cef/media_plugin_cef.cpp
index c50a37aad7..3e7ed88c5d 100644
--- a/indra/media_plugins/cef/media_plugin_cef.cpp
+++ b/indra/media_plugins/cef/media_plugin_cef.cpp
@@ -114,6 +114,7 @@ private:
bool mCanDelete;
bool mCanSelectAll;
std::string mRootCachePath;
+ std::string mCachePath;
std::string mCefLogFile;
bool mCefLogVerbose;
std::vector<std::string> mPickedFiles;