mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
mpegtspacketizer: fix find_subtable() return value
find_subtable() returns a pointer, so return NULL and not FALSE when nothing is found. https://bugzilla.gnome.org/show_bug.cgi?id=748527
This commit is contained in:
parent
57891a4177
commit
365375a1de
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ find_subtable (GSList * subtables, guint8 table_id, guint16 subtable_extension)
|
||||||
return sub;
|
return sub;
|
||||||
}
|
}
|
||||||
|
|
||||||
return FALSE;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
|
Loading…
Reference in a new issue