Skip to content

Commit

Permalink
Fix handling of labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen Koekkoek committed Nov 1, 2023
1 parent 1aa4e2b commit f5711b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ixfr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@ static size_t skip_dname(uint8_t* rdata, size_t rdata_len)
return (index + 1 < rdata_len) ? index + 2 : 0;
} else {
/* loop breaks if index exceeds rdata_len */
index += label_size;
index += label_size + 1;
}
}

Expand Down

0 comments on commit f5711b3

Please sign in to comment.