From b3ee734f43c2d7f078ced77c2c2b76424db5df64 Mon Sep 17 00:00:00 2001 From: Younghwan Date: Fri, 4 Aug 2017 14:55:23 +0900 Subject: [PATCH] replace name format to fix an issue that core dump can't be created well in usb because colon is not supported in vfat Change-Id: I878463aaf88e969a43c000f81120b55c973cbd5d --- gst/gstpad.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gst/gstpad.c b/gst/gstpad.c index 9fea17e..4d51fcd 100644 --- a/gst/gstpad.c +++ b/gst/gstpad.c @@ -5774,7 +5774,11 @@ do_stream_status (GstPad * pad, GstStreamStatusType type, /* create a good task name */ ename = gst_element_get_name (parent); pname = gst_pad_get_name (pad); +#ifdef TIZEN_PROFILE_TV + tname = g_strdup_printf ("%s-%s", ename, pname); +#else tname = g_strdup_printf ("%s:%s", ename, pname); +#endif g_free (ename); g_free (pname); -- 2.7.4