Files
codeql/cpp/ql/test/library-tests/dataflow/dataflow-tests/self_argument_flow.cpp
2023-08-29 14:12:09 +01:00

14 lines
187 B
C++

namespace {
struct Foo {
char string[10];
};
void acquire(char*);
Foo* test_self_argument_flow() {
Foo *info;
acquire(info->string); // clean
return info;
}
}