Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
http server: fix build
  • Loading branch information
perexg committed Jun 17, 2016
1 parent 8ac413c commit 2d15eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/http.c
Expand Up @@ -655,7 +655,7 @@ http_redirect(http_connection_t *hc, const char *location,
http_send_reply(hc, HTTP_STATUS_FOUND, "text/html", NULL, loc, 0);

if (loc != location)
free(loc);
free((char *)loc);
}


Expand Down

0 comments on commit 2d15eca

Please sign in to comment.