X-Git-Url: http://git.thejh.net/?p=quakecontrol.git;a=blobdiff_plain;f=loadmap.c;h=d060a34e930d312fafaa185c33ccb6ff7f0f914a;hp=bc6eb9bb27fc082e5b357c5b38767b8fe74b8bbb;hb=HEAD;hpb=6f65a84500612fe4387884ee42b3171f3f4fe101 diff --git a/loadmap.c b/loadmap.c index bc6eb9b..d060a34 100644 --- a/loadmap.c +++ b/loadmap.c @@ -7,6 +7,7 @@ char *map; void check_map_name(void) { if (map == NULL) senderr("missing query string", false); + if (strlen(map) > 100) senderr("map string is too long - no stack/heap overlap issue for you!", false); for (char *p = map; *p; p++) { if (*p >= 'a' && *p <= 'z') continue; if (*p >= 'A' && *p <= 'Z') continue; @@ -29,4 +30,4 @@ int main(void) { "\nX-Frame-Options: DENY" "\n"); exit(0); -} \ No newline at end of file +}