mirror of
https://git.zx2c4.com/cgit
synced 2024-11-22 08:28:42 +00:00
ui-shared: Avoid new line injection into redirect header
This commit is contained in:
parent
4c69241b05
commit
4291453ec3
@ -709,7 +709,9 @@ void cgit_print_http_headers(void)
|
|||||||
void cgit_redirect(const char *url, bool permanent)
|
void cgit_redirect(const char *url, bool permanent)
|
||||||
{
|
{
|
||||||
htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found");
|
htmlf("Status: %d %s\n", permanent ? 301 : 302, permanent ? "Moved" : "Found");
|
||||||
htmlf("Location: %s\n\n", url);
|
html("Location: ");
|
||||||
|
html_url_path(url);
|
||||||
|
html("\n\n");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user