mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a loop condition
The correct way to identify the end of the metadata is two adjacent entries set to zero/MODINFO_END. I made a typo and this was checking the first entry twice. Reported by: rpokala Sponsored by: NetApp, Inc. Sponsored by: Klara, Inc.
This commit is contained in:
parent
22e6a67086
commit
841dad02e9
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@ preload_dump_internal(struct sbuf *sbp)
|
|||
*/
|
||||
bptr = (uint32_t *)preload_metadata;
|
||||
sbuf_putc(sbp, '\n');
|
||||
while (bptr[0] != MODINFO_END || bptr[0] != MODINFO_END) {
|
||||
while (bptr[0] != MODINFO_END || bptr[1] != MODINFO_END) {
|
||||
sbuf_printf(sbp, " %p:\n", bptr);
|
||||
type = *bptr++;
|
||||
len = *bptr++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue