ITS#10431 Enforce a stop when encountering a nul-leading line

This commit is contained in:
Ondřej Kuzník 2026-01-28 10:28:05 +00:00 committed by Quanah Gibson-Mount
parent 2c5388b2da
commit cd70bf5082

View file

@ -830,11 +830,13 @@ pop:
/* ITS#9811 Reached the end looking for an entry, try again */
goto pop;
}
stop = 1;
len = 0;
} else {
len = strlen( line );
}
if ( !len ) {
stop = 1;
}
}
if ( stop ) {