Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/http.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ http_get(CONN *C, URL U)
char encoding[512];
char *request;
char portstr[16];
char fullpath[4096];
char fullpath[8192];
char cookie[MAX_COOKIE_SIZE+8];
char * ifnon = NULL;
char * ifmod = NULL;
Expand Down Expand Up @@ -281,7 +281,7 @@ http_post(CONN *C, URL U)
char protocol[16];
char keepalive[16];
char cookie[MAX_COOKIE_SIZE];
char fullpath[4096];
char fullpath[8192];

memset(hoststr, '\0', sizeof(hoststr));
memset(cookie, '\0', MAX_COOKIE_SIZE);
Expand Down