1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Fix compiler warning: may be used uninitialized

This commit is contained in:
Yang Tse 2007-11-08 16:43:01 +00:00
parent c960cd41e8
commit b99a61c5b0

View File

@ -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;