gst/interfacesmodule.c: initialize pygobject in the gst.interfaces modules. The absence of it causes segfaults on Sol...

Original commit message from CVS:
reviewed by: Edward Hervey  <edward@fluendo.com>
* gst/interfacesmodule.c: (initinterfaces):
initialize pygobject in the gst.interfaces modules. The absence of it
causes segfaults on Solaris and MIPS machines.
Fixes #343980
This commit is contained in:
Edward Hervey 2007-03-01 13:47:12 +00:00
parent f545ee31ba
commit 78dc74984d
2 changed files with 11 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2007-03-01 Jan Schmidt <thaytan@mad.scientist.com>
reviewed by: Edward Hervey <edward@fluendo.com>
* gst/interfacesmodule.c: (initinterfaces):
initialize pygobject in the gst.interfaces modules. The absence of it
causes segfaults on Solaris and MIPS machines.
Fixes #343980
2007-02-27 Michael Smith <msmith@fluendo.com>
* gst/base.defs:

View file

@ -38,6 +38,8 @@ initinterfaces (void)
{
PyObject *m, *d;
init_pygobject ();
m = Py_InitModule ("interfaces", pyinterfaces_functions);
d = PyModule_GetDict (m);