mirror of
https://github.com/curl/curl.git
synced 2026-07-23 21:47:34 +03:00
Fix compiler warning: may be used uninitialized
This commit is contained in:
parent
c960cd41e8
commit
b99a61c5b0
1 changed files with 1 additions and 1 deletions
|
|
@ -370,7 +370,7 @@ static CURLcode ssh_getworkingpath(struct connectdata *conn,
|
|||
real path to work with */
|
||||
{
|
||||
struct SessionHandle *data = conn->data;
|
||||
char *real_path;
|
||||
char *real_path = NULL;
|
||||
char *working_path;
|
||||
int working_path_len;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue