mirror of
https://github.com/curl/curl.git
synced 2026-08-26 07:53:31 +03:00
url.c: fix possible use of non-null-terminated string with strlen
This commit is contained in:
parent
7296fc9e7e
commit
b0e742544b
1 changed files with 1 additions and 1 deletions
|
|
@ -3733,7 +3733,7 @@ static CURLcode parseurlandfillconn(struct SessionHandle *data,
|
|||
char *query;
|
||||
int rc;
|
||||
char protobuf[16];
|
||||
const char *protop;
|
||||
const char *protop = "";
|
||||
CURLcode result;
|
||||
bool rebuild_url = FALSE;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue