Skip to content
Snippets Groups Projects
Commit 7cb51ec6 authored by Sebastian Dröge's avatar Sebastian Dröge :tea:
Browse files

python: Check return value of g_module_symbol()

CID 1320702
parent dd51136c
No related branches found
No related tags found
No related merge requests found
......@@ -229,9 +229,8 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEPENDENCY_FLAG_NONE);
GST_LOG ("Checking to see if libpython is already loaded");
g_module_symbol (g_module_open (NULL, G_MODULE_BIND_LOCAL), "_Py_NoneStruct",
&has_python);
if (has_python) {
if (g_module_symbol (g_module_open (NULL, G_MODULE_BIND_LOCAL),
"_Py_NoneStruct", &has_python) && has_python) {
GST_LOG ("libpython is already loaded");
} else {
GST_LOG ("loading libpython");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment