Skip to content
Snippets Groups Projects
Commit f5db57c4 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Suppress Coverity overflow issue.

This can't actually happen.
parent ab0d2a0d
No related branches found
No related tags found
1 merge request!488Overhaul LZH code
Pipeline #7584 passed
......@@ -1065,6 +1065,7 @@ int zmodem_recv_hex(zmodem_t* zm)
if(n0 < 0)
return n0;
// coverity[overflow:SUPPRESS]
ret = (n1 << 4) | n0;
// lprintf(zm,LOG_DEBUG, __FUNCTION__ " returning: 0x%02X", ret);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment