replace name format to fix an issue that core dump can't be created well in usb 96/142496/1
authorYounghwan <younghwan_.an@samsung.com>
Fri, 4 Aug 2017 05:55:23 +0000 (14:55 +0900)
committerYounghwan <younghwan_.an@samsung.com>
Fri, 4 Aug 2017 06:03:16 +0000 (15:03 +0900)
because colon is not supported in vfat

Change-Id: I878463aaf88e969a43c000f81120b55c973cbd5d

gst/gstpad.c

index 9fea17e..4d51fcd 100644 (file)
@@ -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);