maxime-esa / asn1scc

ASN1SCC: An open source ASN.1 compiler for embedded systems

Home Page:https://www.thanassis.space/asn1.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cppcheck findings

usr3-1415 opened this issue · comments

The tool cppcheck found two issues in the C run time library:

  • Shifting a negative value is technically undefined behaviour
  • Array index 'i' is used before limits check
    while (digitsArray100[i] != 0x0 && i<100) {

Fixed