summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorJimmy Ohn <yongjin.ohn@lge.com>2015-04-27 22:44:28 +0900
committerTim-Philipp Müller <tim@centricular.com>2015-04-28 14:48:22 +0100
commit365375a1def4d54dcf3dbc261ef2cb3486a744f6 (patch)
tree3d5ddc500c7a3afecfe39e01b4873e0e194b6a4f /gst
parent57891a417738f105935e1664c6213adc448b3395 (diff)
downloadgstreamer-plugins-bad-365375a1def4d54dcf3dbc261ef2cb3486a744f6.tar.gz
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
Diffstat (limited to 'gst')
-rw-r--r--gst/mpegtsdemux/mpegtspacketizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/mpegtsdemux/mpegtspacketizer.c b/gst/mpegtsdemux/mpegtspacketizer.c
index edf837a84..1cdb9e993 100644
--- a/gst/mpegtsdemux/mpegtspacketizer.c
+++ b/gst/mpegtsdemux/mpegtspacketizer.c
@@ -148,7 +148,7 @@ find_subtable (GSList * subtables, guint8 table_id, guint16 subtable_extension)
return sub;
}
- return FALSE;
+ return NULL;
}
static gboolean