mirror of
https://github.com/curl/curl.git
synced 2026-05-18 12:26:20 +03:00
smb: Fixed unnecessary initialisation of struct member variables
There is no need to set the 'state' and 'result' member variables to SMB_REQUESTING (0) and CURLE_OK (0) after the allocation via calloc() as calloc() initialises the contents to zero.
This commit is contained in:
parent
52a4d6b8ae
commit
35fae251dd
1 changed files with 0 additions and 3 deletions
|
|
@ -234,9 +234,6 @@ static CURLcode smb_setup(struct connectdata *conn)
|
|||
if(!req)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
|
||||
req->state = SMB_REQUESTING;
|
||||
req->result = CURLE_OK;
|
||||
|
||||
/* Parse the URL path */
|
||||
return smb_parse_url_path(conn);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue