mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
gstplay: Do not error out on message parsing failures
Specially when parsing errors and warnings, the details field can be NULL and the gst_structure_get() call would return FALSE in such cases, triggering false positive errors. Follow-up for #1063 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1871>
This commit is contained in:
parent
f1f6d01ea5
commit
aaade8b62e
1 changed files with 1 additions and 3 deletions
|
@ -4566,9 +4566,7 @@ gst_play_is_play_message (GstMessage * msg)
|
|||
const GstStructure *data = NULL; \
|
||||
g_return_if_fail (gst_play_is_play_message (msg)); \
|
||||
data = gst_message_get_structure (msg); \
|
||||
if (!gst_structure_get (data, field, value_type, value, NULL)) { \
|
||||
g_error ("Could not parse field from structure: %s", field); \
|
||||
} \
|
||||
gst_structure_get (data, field, value_type, value, NULL); \
|
||||
} G_STMT_END
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue