提交 c70335c8 编写于 作者: O openharmony_ci 提交者: Gitee

!106 fix bad code in fs codes

Merge pull request !106 from 野生毛霉君/master
......@@ -247,7 +247,6 @@ out:
int update_file_path(const char *old_path, const char *new_path)
{
unsigned int i = 3;
struct filelist *f_list = NULL;
struct file *filp = NULL;
int ret;
......@@ -260,12 +259,11 @@ int update_file_path(const char *old_path, const char *new_path)
}
(VOID)LOS_MuxLock(&g_file_mapping.lock, LOS_WAIT_FOREVER);
while (i < CONFIG_NFILE_DESCRIPTORS) {
i++;
if (!get_bit(i - 1)) {
for (int i = 3; i < CONFIG_NFILE_DESCRIPTORS; i++) {
if (!get_bit(i)) {
continue;
}
filp = &tg_filelist.fl_files[i - 1];
filp = &tg_filelist.fl_files[i];
if (filp->f_path == NULL || strcmp(filp->f_path, old_path)) {
continue;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册