gst: Fix a crash when passing wrong type as __templates__

This commit is contained in:
Thibault Saunier 2016-02-15 23:26:06 +01:00
parent 8b94b967a0
commit 7b627c499d
2 changed files with 6 additions and 5 deletions

View file

@ -147,7 +147,8 @@ add_templates (gpointer gclass, PyObject * templates)
for (i = 0; i < len; i++) {
templ = (PyGObject *) PyTuple_GetItem (templates, i);
if (GST_IS_PAD_TEMPLATE (pygobject_get (templ)) == FALSE) {
if (!pygobject_check (templates, &PyGObject_Type) ||
GST_IS_PAD_TEMPLATE (pygobject_get (templates)) == FALSE) {
PyErr_SetString (PyExc_TypeError,
"entries for __gsttemplates__ must be of type GstPadTemplate");
return -1;
@ -161,11 +162,11 @@ add_templates (gpointer gclass, PyObject * templates)
}
return 0;
}
if (GST_IS_PAD_TEMPLATE (pygobject_get (templates)) == FALSE) {
} else if (!pygobject_check (templates, &PyGObject_Type) ||
GST_IS_PAD_TEMPLATE (pygobject_get (templates)) == FALSE) {
PyErr_SetString (PyExc_TypeError,
"entry for __gsttemplates__ must be of type GstPadTemplate");
return -1;
}

View file

@ -31,7 +31,7 @@ import os
import gc
import unittest
import gi.overrides
gi.overrides
from gi.repository import Gst