mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
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:
parent
dbb7630f7d
commit
3f3e6f0258
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue