Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 320 Bytes

signedCharArrayIndex.md

File metadata and controls

11 lines (6 loc) · 320 Bytes

Pattern: Signed char used as array index

Issue: -

Description

Signed char type used as array index. If the value can be greater than 127 there will be a buffer underflow because of sign extension.

Further Reading