mirror of
https://github.com/github/codeql.git
synced 2026-01-10 05:00:29 +01:00
6 lines
122 B
C++
6 lines
122 B
C++
Record *ptr = new Record(...);
|
|
|
|
...
|
|
|
|
free(ptr); // BAD: ptr was created using 'new', but is being freed using 'free'
|