We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
#186 adds memory-leak detection to the CI run, and it indicates a memory leak in this function.
What appears to be happening is that this duplicated record in 25-ZONEMD:
duplicate.example. 300 IN TXT "I must be digested just once"
… is represented by 2 rr structs, only 1 of which gets assigned to the dnssec_zone. The other is never freed.
rr
dnssec_zone
The text was updated successfully, but these errors were encountered:
Will this be fixed soon?
Sorry, something went wrong.
@Zero3K I think any fix would have to be pretty invasive. I could be wrong though.
I can have a look at this
wtoorop
No branches or pull requests
#186 adds memory-leak detection to the CI run, and it indicates a memory leak in this function.
What appears to be happening is that this duplicated record in 25-ZONEMD:
… is represented by 2
rr
structs, only 1 of which gets assigned to thednssec_zone
. The other is never freed.The text was updated successfully, but these errors were encountered: