Commit ced93524 authored by captainwong's avatar captainwong

fix

parent 9a5c92b1
......@@ -1235,8 +1235,8 @@ struct AdemcoPacket
}
// dump data
JLOG_HEX(pack, std::min(pack_len, size_t(1024)));
JLOG_ASC(pack, std::min(pack_len, size_t(1024)));
JLOG_HEX(pack, std::min(pack_len, jlib::MAX_INPUT_BUFF_LEN));
JLOG_ASC(pack, std::min(pack_len, jlib::MAX_INPUT_BUFF_LEN));
assert(0);
return ParseResult::RESULT_DATA_ERROR;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment