mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
10 lines
298 B
C++
10 lines
298 B
C++
void sink(char);
|
|
void sink(char*);
|
|
|
|
int WinMain(void *hInstance, void *hPrevInstance, char *pCmdLine, int nCmdShow) { // $ ast-def=hInstance ast-def=hPrevInstance ast-def=pCmdLine ir-def=*hInstance ir-def=*hPrevInstance ir-def=*pCmdLine
|
|
sink(pCmdLine);
|
|
sink(*pCmdLine); // $ ir
|
|
|
|
return 0;
|
|
}
|