mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
120 B
C
8 lines
120 B
C
#include "stdlib.h"
|
|
|
|
void test(char *name) {
|
|
getenv("HOME");
|
|
getenv(name);
|
|
secure_getenv("QUERY_STRING");
|
|
}
|