gst/gstsegment.c: _copy() was always returning NULL...

Original commit message from CVS:
* gst/gstsegment.c: (gst_segment_copy):
_copy() was always returning NULL...
This commit is contained in:
Edward Hervey 2006-06-05 12:55:58 +00:00
parent dbb7630f7d
commit 3f3e6f0258
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-06-05 Edward Hervey <edward@fluendo.com>
* gst/gstsegment.c: (gst_segment_copy):
_copy() was always returning NULL...
2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org> 2006-06-02 Thomas Vander Stichele <thomas at apestaart dot org>
* libs/gst/dataprotocol/dataprotocol.c: * libs/gst/dataprotocol/dataprotocol.c:

View file

@ -92,7 +92,7 @@ gst_segment_copy (GstSegment * segment)
result = gst_segment_new (); result = gst_segment_new ();
memcpy (result, segment, sizeof (GstSegment)); memcpy (result, segment, sizeof (GstSegment));
} }
return NULL; return result;
} }
GType GType