mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 20:59:44 +00:00
Fix a couple of instances of childs, which should be xmlChildrenNode. We need to be careful to stop these creeping b...
Original commit message from CVS: Fix a couple of instances of childs, which should be xmlChildrenNode. We need to be careful to stop these creeping back in... ;-)
This commit is contained in:
parent
954663456a
commit
b12b280b91
1 changed files with 2 additions and 2 deletions
|
@ -801,7 +801,7 @@ void
|
||||||
gst_pad_load_and_connect (xmlNodePtr self,
|
gst_pad_load_and_connect (xmlNodePtr self,
|
||||||
GstObject *parent)
|
GstObject *parent)
|
||||||
{
|
{
|
||||||
xmlNodePtr field = self->childs;
|
xmlNodePtr field = self->xmlChildrenNode;
|
||||||
GstPad *pad = NULL, *targetpad;
|
GstPad *pad = NULL, *targetpad;
|
||||||
guchar *peer = NULL;
|
guchar *peer = NULL;
|
||||||
gchar **split;
|
gchar **split;
|
||||||
|
@ -1086,7 +1086,7 @@ gst_padtemplate_save_thyself (GstPadTemplate *templ, xmlNodePtr parent)
|
||||||
GstPadTemplate*
|
GstPadTemplate*
|
||||||
gst_padtemplate_load_thyself (xmlNodePtr parent)
|
gst_padtemplate_load_thyself (xmlNodePtr parent)
|
||||||
{
|
{
|
||||||
xmlNodePtr field = parent->childs;
|
xmlNodePtr field = parent->xmlChildrenNode;
|
||||||
GstPadTemplate *factory = g_new0 (GstPadTemplate, 1);
|
GstPadTemplate *factory = g_new0 (GstPadTemplate, 1);
|
||||||
|
|
||||||
while (field) {
|
while (field) {
|
||||||
|
|
Loading…
Reference in a new issue