Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 388 Bytes

incompleteArrayFill.md

File metadata and controls

11 lines (6 loc) · 388 Bytes

Pattern: Incomplete array fill

Issue: -

Description

The array buffer is filled incompletely. The function memset() needs the size given in bytes, but an element of the given array is larger than one byte. Did you forget to multiply the size with sizeof(*buffer)?

Further Reading