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
65b26a4d
Commit
65b26a4d
authored
May 15, 2007
by
Mark Andrews
Browse files
2178. [bug] 'rndc reload' of a slave or stub zone resulted in
a reference leak. [RT #16867]
parent
77397daf
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
65b26a4d
2178. [bug] 'rndc reload' of a slave or stub zone resulted in
a reference leak. [RT #16867]
2177. [bug] Array bounds overrun on read (rcodetext). [RT #16798]
2176. [contrib] dbus update to handle race condition during
...
...
bin/named/server.c
View file @
65b26a4d
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: server.c,v 1.48
3
2007/0
4/24 06:55:32
marka Exp $ */
/* $Id: server.c,v 1.48
4
2007/0
5/15 02:28:27
marka Exp $ */
/*! \file */
...
...
@@ -4189,6 +4189,7 @@ ns_server_reloadcommand(ns_server_t *server, char *args, isc_buffer_t *text) {
type
=
dns_zone_gettype
(
zone
);
if
(
type
==
dns_zone_slave
||
type
==
dns_zone_stub
)
{
dns_zone_refresh
(
zone
);
dns_zone_detach
(
&
zone
);
msg
=
"zone refresh queued"
;
}
else
{
result
=
dns_zone_load
(
zone
);
...
...
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