Skip to content

Commit

Permalink
Fix debian bug 764142
Browse files Browse the repository at this point in the history
When FreeRDP is compiled with -DSTATIC_CHANNELS=off and
RDP local sound is enable in Remmina, Remmina will crash
upon RDP connection with the error
/usr/lib/x86_64-linux-gnu/freerdp/rdpsnd-client-pulse.so: undefined symbol:
freerdp_dsp_context_new
This is the fix.
  • Loading branch information
giox069 authored and Giovanni Panozzo committed Oct 9, 2014
1 parent e5fe4bb commit b1b3c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remmina/src/remmina_plugin_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ static void remmina_plugin_manager_load_plugin(const gchar *name)
GModule *module;
RemminaPluginEntryFunc entry;

module = g_module_open(name, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
module = g_module_open(name, G_MODULE_BIND_LAZY);

if (!module)
{
Expand Down

0 comments on commit b1b3c12

Please sign in to comment.