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:
Jimmy Ohn 2015-04-27 22:44:28 +09:00 committed by Tim-Philipp Müller
parent 57891a4177
commit 365375a1de

View file

@ -148,7 +148,7 @@ find_subtable (GSList * subtables, guint8 table_id, guint16 subtable_extension)
return sub;
}
return FALSE;
return NULL;
}
static gboolean