change while loop to for loop
Change-Id: Ie5c0cbca1e94c97ee2f511bf5ee3cdfb8c085a79
This commit is contained in:
parent
f2e1e18fb4
commit
f82be437b9
|
@ -247,7 +247,6 @@ out:
|
||||||
|
|
||||||
int update_file_path(const char *old_path, const char *new_path)
|
int update_file_path(const char *old_path, const char *new_path)
|
||||||
{
|
{
|
||||||
unsigned int i = 3;
|
|
||||||
struct filelist *f_list = NULL;
|
struct filelist *f_list = NULL;
|
||||||
struct file *filp = NULL;
|
struct file *filp = NULL;
|
||||||
int ret;
|
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);
|
(VOID)LOS_MuxLock(&g_file_mapping.lock, LOS_WAIT_FOREVER);
|
||||||
while (i < CONFIG_NFILE_DESCRIPTORS) {
|
for (int i = 3; i < CONFIG_NFILE_DESCRIPTORS; i++) {
|
||||||
i++;
|
if (!get_bit(i)) {
|
||||||
if (!get_bit(i - 1)) {
|
|
||||||
continue;
|
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)) {
|
if (filp->f_path == NULL || strcmp(filp->f_path, old_path)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue