Don't increase failure count for dangling symlinks

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
This commit is contained in:
Dave Rodgman 2022-07-20 14:01:45 +01:00
parent 32ffb2b8bc
commit 168bcd684b

View File

@ -1662,8 +1662,8 @@ cleanup:
{ {
if( errno == ENOENT ) if( errno == ENOENT )
{ {
/* Broken link */ /* Broken link - ignore this entry */
ret++; continue;
} }
else else
{ {