Explorar o código

fdtdec: Fix possible infinite loop in fdtdec_get_pci_vendev()

When there is no valid compatible string in current list,
we should advance to next one in the compatible string list.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Bin Meng %!s(int64=9) %!d(string=hai) anos
pai
achega
bc6351eb48
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      lib/fdtdec.c

+ 1 - 2
lib/fdtdec.c

@@ -207,9 +207,8 @@ int fdtdec_get_pci_vendev(const void *blob, int node, u16 *vendor, u16 *device)
 
 				return 0;
 			}
-		} else {
-			list += (len + 1);
 		}
+		list += (len + 1);
 	}
 
 	return -ENOENT;