Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
069104dd
Commit
069104dd
authored
Oct 08, 1999
by
Brian Wellington
Browse files
the message->cleanup list was being improperly cleaned
parent
22fe53a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/dns/message.c
View file @
069104dd
...
...
@@ -443,7 +443,7 @@ msgreset(dns_message_t *msg, isc_boolean_t everything)
dynbuf
=
ISC_LIST_HEAD
(
msg
->
cleanup
);
while
(
dynbuf
!=
NULL
)
{
next_dynbuf
=
ISC_LIST_NEXT
(
dynbuf
,
link
);
ISC_LIST_UNLINK
(
msg
->
scratchpad
,
dynbuf
,
link
);
ISC_LIST_UNLINK
(
msg
->
cleanup
,
dynbuf
,
link
);
isc_buffer_free
(
&
dynbuf
);
dynbuf
=
next_dynbuf
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment