mirror of
https://github.com/weechat/weechat.git
synced 2026-07-08 02:33:12 +02:00
Fixed plugins symbol problem (removed global flag when loading library)
This commit is contained in:
@@ -752,7 +752,7 @@ plugin_load (char *filename)
|
||||
if (!full_name)
|
||||
return NULL;
|
||||
|
||||
handle = dlopen (full_name, RTLD_GLOBAL | RTLD_NOW);
|
||||
handle = dlopen (full_name, RTLD_LOCAL | RTLD_NOW);
|
||||
if (!handle)
|
||||
{
|
||||
irc_display_prefix (NULL, NULL, PREFIX_ERROR);
|
||||
|
||||
Reference in New Issue
Block a user