You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Pointer arithmetic in C is a powerful feature when working with many data structures, however it can lead to subtle and hard to spot coding errors.  This is due to the importance of context (the type of the pointer in question) which is likely declared outside the pointer arithmetic expression.  In the case of bounds checking, this can lead to buffer overflow vulnerabilities.

  • No labels