github/codeql-coding-standards

`RULE-8-13`: Consider `*p++ = ...` pattern to be a write

lcartey opened this issue · 0 comments

Affected rules

  • RULE-8-13

Description

*p++ should be considered to be a write to p.

Example

*p++ = 1;