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

Suppress Coverity overflow issue.

This can't actually happen.
parent e7be2b25
No related branches found
No related tags found
No related merge requests found
......@@ -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.
Finish editing this message first!
Please register or to comment