mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 13:02:29 +00:00
xmptag: remove late check
We deref the pointer two lines before already and besides this internal function should not be called with this parameter=NULL.
This commit is contained in:
parent
f466c5e1ca
commit
a2d622ab03
1 changed files with 1 additions and 1 deletions
|
@ -1073,7 +1073,7 @@ read_one_tag (GstTagList * list, XmpTag * xmptag,
|
|||
|
||||
g_return_if_fail (tag != NULL);
|
||||
|
||||
if (xmptag && xmptag->deserialize) {
|
||||
if (xmptag->deserialize) {
|
||||
xmptag->deserialize (xmptag, list, tag, xmptag->tag_name, v, pending_tags);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue