[ulog] fix HEX log size calculate error.

This commit is contained in:
朱天龙 (Armink) 2022-10-10 18:32:14 +08:00 committed by Man, Jianting (Meco)
parent ed1bcfbd7e
commit 35c7dd6aba
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ void ulog_hexdump(const char *tag, rt_size_t width, const rt_uint8_t *buf, rt_si
for (i = 0; i < size; i += width, buf += width)
{
if (i + size < width)
if (i + width > size)
len = size - i;
else
len = width;