[components] change variable name

为什么提交这份PR (why to submit this PR)
#9397

你的解决方案是什么 (what is your solution)
将 line 758的dir改为link_dir
This commit is contained in:
CYFS 2024-09-25 08:04:57 +08:00 committed by GitHub
parent 58055e7584
commit b4d30064cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -755,10 +755,10 @@ void msh_auto_complete_path(char *path)
}
else if (S_ISLNK(buffer.st_mode))
{
DIR *dir = opendir(path);
if (dir)
DIR *link_dir = opendir(path);
if (link_dir)
{
closedir(dir);
closedir(link_dir);
strcat(path, "/");
}
}