mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
11 lines
96 B
C++
11 lines
96 B
C++
int f(MyList *list) {
|
|
list->append(1);
|
|
|
|
// ...
|
|
|
|
if (list != NULL)
|
|
{
|
|
list->append(2);
|
|
}
|
|
}
|