mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-24 10:14:13 -05:00
libobs: Fix module load in relocatable scenario
This commit is contained in:
+2
-2
@@ -74,8 +74,8 @@ void add_default_module_paths(void)
|
||||
char *abs_module_bin_path = os_get_abs_path_ptr(module_bin_path);
|
||||
char *abs_module_install_path = os_get_abs_path_ptr(OBS_INSTALL_PREFIX "/" OBS_PLUGIN_DESTINATION);
|
||||
|
||||
if (abs_module_bin_path && abs_module_install_path &&
|
||||
strcmp(abs_module_bin_path, abs_module_install_path) != 0) {
|
||||
if (abs_module_bin_path &&
|
||||
(!abs_module_install_path || strcmp(abs_module_bin_path, abs_module_install_path) != 0)) {
|
||||
obs_add_module_path(module_bin_path, module_data_path);
|
||||
}
|
||||
bfree(abs_module_install_path);
|
||||
|
||||
Reference in New Issue
Block a user