mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
These were due to several functions occurring that would have the same TRAP key. By making the functions static the TRAP keys will differ from each other.
7 lines
47 B
C
7 lines
47 B
C
void (*g())();
|
|
|
|
static void f() {
|
|
g()();
|
|
;
|
|
}
|