Commit b99a61c5 authored by Yang Tse's avatar Yang Tse
Browse files

Fix compiler warning: may be used uninitialized

parent c960cd41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;