Do not pass flags to g_module_open(NULL)
The flags are ignored when opening the main module, so we should pass 0 to avoid confusion when reading the source.
This commit is contained in:
@ -906,7 +906,7 @@ clutter_script_connect_signals (ClutterScript *script,
|
||||
}
|
||||
|
||||
cd = g_new (ConnectData, 1);
|
||||
cd->module = g_module_open (NULL, G_MODULE_BIND_LAZY);
|
||||
cd->module = g_module_open (NULL, 0);
|
||||
cd->data = user_data;
|
||||
|
||||
clutter_script_connect_signals_full (script,
|
||||
|
Reference in New Issue
Block a user