[component][ulog] Fix the ulog_strcpy function.

This commit is contained in:
朱天龙 (Armink) 2019-01-03 15:31:04 +08:00 committed by GitHub
parent 5cd3815058
commit c7daacc96f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -149,7 +149,7 @@ size_t ulog_strcpy(size_t cur_len, char *dst, const char *src)
while (*src != 0)
{
/* make sure destination has enough space */
if (cur_len++ <= ULOG_LINE_BUF_SIZE)
if (cur_len++ < ULOG_LINE_BUF_SIZE)
{
*dst++ = *src++;
}