提交 58459307 编写于 作者: armink_ztl's avatar armink_ztl

[component][ulog] Fixed the thread name output.

上级 b2c33897
......@@ -315,7 +315,10 @@ RT_WEAK rt_size_t ulog_formater(char *log_buf, rt_uint32_t level, const char *ta
/* is not in interrupt context */
if (rt_interrupt_get_nest() == 0)
{
log_len += ulog_strcpy(log_len, log_buf + log_len, rt_thread_self()->name);
rt_size_t name_len = rt_strnlen(rt_thread_self()->name, RT_NAME_MAX);
rt_strncpy(log_buf + log_len, rt_thread_self()->name, name_len);
log_len += name_len;
}
else
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册