python: Don't call Py_DECREF() on NULL
CID 1320703
This commit is contained in:
parent
4097d3df3c
commit
b0e9b79ca8
@ -290,7 +290,8 @@ plugin_init (GstPlugin * plugin)
|
||||
pyplugin = pygobject_new (G_OBJECT (plugin));
|
||||
if (!pyplugin || PyModule_AddObject (gst, "__plugin__", pyplugin) != 0) {
|
||||
g_critical ("Couldn't set __plugin__ attribute");
|
||||
Py_DECREF (pyplugin);
|
||||
if (pyplugin)
|
||||
Py_DECREF (pyplugin);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user