fix compiler warning

This commit is contained in:
Yang Tse 2008-10-10 02:14:46 +00:00
parent 4b8f13e902
commit d0a48627b2

View File

@ -1393,7 +1393,8 @@ static CURLcode ftp_state_post_listtype(struct connectdata *conn)
/* chop off the file part if format is dir/dir/file */
slashPos = strrchr(lstArg,'/');
*(slashPos+1) = '\0';
if(slashPos)
*(slashPos+1) = '\0';
}
}