Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • early-display
  • variant-emmc-nvme-boot
  • 2023-01-25
  • v3
  • variant-emmc-nvme-boot
  • 2020-06-01
7 results

libfdt

  • Clone with SSH
  • Clone with HTTPS
  • Forked from Reform / reform-boundary-uboot
    Source project has a limited visibility.
    user avatar
    Jon Nalley authored
    It has been observed that fit_check_format() will fail when passed a
    corrupt FIT image.  This was tracked down to _fdt_string_eq():
    return (strlen(p) == len) && (memcmp(p, s, len) == 0);
    
    In the case of a corrupt FIT image one can't depend on 'p' being NULL
    terminated.  I changed it to use strnlen() to fix the issue.
    
    Signed-off-by: default avatarTom Rini <trini@ti.com>
    af67b252
    History
    Name Last commit Last update
    ..