mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 15:18:21 +00:00
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:
parent
f545ee31ba
commit
78dc74984d
2 changed files with 11 additions and 0 deletions
|
@ -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:
|
||||
|
|
|
@ -38,6 +38,8 @@ initinterfaces (void)
|
|||
{
|
||||
PyObject *m, *d;
|
||||
|
||||
init_pygobject ();
|
||||
|
||||
m = Py_InitModule ("interfaces", pyinterfaces_functions);
|
||||
d = PyModule_GetDict (m);
|
||||
|
||||
|
|
Loading…
Reference in a new issue