From 3060fea00da73ba003d5c1bf7315f62f3b7730c9 Mon Sep 17 00:00:00 2001 From: NAMJEONGYOON Date: Tue, 15 Nov 2016 11:39:26 +0900 Subject: [PATCH] ignore spaces for getting lang_key Change-Id: I7ba89d3504b5d2f29619ee05b68f554584ceef5c --- gst/subparse/samiparse.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/subparse/samiparse.c b/gst/subparse/samiparse.c index 0d0efc1..c9eaea3 100644 --- a/gst/subparse/samiparse.c +++ b/gst/subparse/samiparse.c @@ -571,6 +571,9 @@ html_context_handle_element (HtmlContext * ctxt, attr_value = (gchar*)malloc (3); next = next + 5; + /* skip spaces */ + while (*next == ' ') + next++; strncpy (attr_value, next, 2); attr_value[2] = '\0'; GST_LOG ("Language value comes as %s", attr_value); -- 2.7.4