Original commit message from CVS:
* gst-libs/gst/interfaces/propertyprobe.c:
Check for NULL pointer, in the hope that this fixes #532864.
+2008-09-05 Stefan Kost <ensonic@users.sf.net>
+
+ * gst-libs/gst/interfaces/propertyprobe.c:
+ Check for NULL pointer, in the hope that this fixes #532864.
+
2008-09-05 Tim-Philipp Müller <tim.muller at collabora co uk>
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
while (pspecs) {
const GParamSpec *pspec = pspecs->data;
- if (!strcmp (pspec->name, name))
- return pspec;
+ if (pspec) {
+ if (!strcmp (pspec->name, name))
+ return pspec;
+ } else {
+ GST_WARNING_OBJECT (probe, "NULL paramspec in property probe list");
+ }
pspecs = pspecs->next;
}