mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 15:19:57 +00:00
libs/gst/dataprotocol/dataprotocol.c: Fixes #347337: failure to deserialize event packets with empty payload (only ev...
Original commit message from CVS: * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_event_from_packet_1_0): Fixes #347337: failure to deserialize event packets with empty payload (only event type)
This commit is contained in:
parent
62ff66028c
commit
4e254808c4
2 changed files with 15 additions and 7 deletions
|
@ -1,3 +1,10 @@
|
|||
2006-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* libs/gst/dataprotocol/dataprotocol.c:
|
||||
(gst_dp_event_from_packet_1_0):
|
||||
Fixes #347337: failure to deserialize event packets with
|
||||
empty payload (only event type)
|
||||
|
||||
2006-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/Makefile.am:
|
||||
|
|
|
@ -659,15 +659,16 @@ gst_dp_event_from_packet_1_0 (guint header_length, const guint8 * header,
|
|||
{
|
||||
GstEvent *event = NULL;
|
||||
GstEventType type;
|
||||
gchar *string;
|
||||
GstStructure *s;
|
||||
gchar *string = NULL;
|
||||
GstStructure *s = NULL;
|
||||
|
||||
type = GST_DP_HEADER_PAYLOAD_TYPE (header) - GST_DP_PAYLOAD_EVENT_NONE;
|
||||
string = g_strndup ((gchar *) payload, GST_DP_HEADER_PAYLOAD_LENGTH (header));
|
||||
s = gst_structure_from_string (string, NULL);
|
||||
g_free (string);
|
||||
if (!s)
|
||||
return NULL;
|
||||
if (payload) {
|
||||
string =
|
||||
g_strndup ((gchar *) payload, GST_DP_HEADER_PAYLOAD_LENGTH (header));
|
||||
s = gst_structure_from_string (string, NULL);
|
||||
g_free (string);
|
||||
}
|
||||
event = gst_event_new_custom (type, s);
|
||||
return event;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue