mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
yaffs2: iterator variable cannot be NULL
The iterator of list_for_each() is never NULL. Identified with coccinelle. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
c9bf43dd9d
commit
428e60e079
2 changed files with 5 additions and 8 deletions
|
@ -1872,8 +1872,8 @@ static int yaffs_new_obj_id(struct yaffs_dev *dev)
|
|||
n += YAFFS_NOBJECT_BUCKETS;
|
||||
list_for_each(i, &dev->obj_bucket[bucket].list) {
|
||||
/* If there is already one in the list */
|
||||
if (i && list_entry(i, struct yaffs_obj,
|
||||
hash_link)->obj_id == n) {
|
||||
if (list_entry(i, struct yaffs_obj,
|
||||
hash_link)->obj_id == n) {
|
||||
found = 0;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -2847,12 +2847,9 @@ static void yaffsfs_RemoveObjectCallback(struct yaffs_obj *obj)
|
|||
* the next one to prevent a hanging ptr.
|
||||
*/
|
||||
list_for_each(i, &search_contexts) {
|
||||
if (i) {
|
||||
dsc = list_entry(i, struct yaffsfs_DirSearchContxt,
|
||||
others);
|
||||
if (dsc->nextReturn == obj)
|
||||
yaffsfs_DirAdvance(dsc);
|
||||
}
|
||||
dsc = list_entry(i, struct yaffsfs_DirSearchContxt, others);
|
||||
if (dsc->nextReturn == obj)
|
||||
yaffsfs_DirAdvance(dsc);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue