diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-09-19 08:23:03 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-09-19 08:23:03 -0700 |
commit | 92786aebf1b8aa17612ebaf5dd0ee8cd4abf9616 (patch) | |
tree | fdb5fc1bc3ed91981f045d9fed508ccd96bdc65d /source4/nbt_server | |
parent | 7c542406b192cd72c40778850d92771974d6466c (diff) | |
download | samba-92786aebf1b8aa17612ebaf5dd0ee8cd4abf9616.tar.gz samba-92786aebf1b8aa17612ebaf5dd0ee8cd4abf9616.tar.bz2 samba-92786aebf1b8aa17612ebaf5dd0ee8cd4abf9616.zip |
s4-resolve: fixed a crash bug on timeout
We were creating the name resolution context as a child of lp_ctx,
which meant when we gave up on a connection the timer on name
resolution kept running, and when it timed out the callback crashed as
the socket was already removed.
Diffstat (limited to 'source4/nbt_server')
-rw-r--r-- | source4/nbt_server/wins/wins_dns_proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/nbt_server/wins/wins_dns_proxy.c b/source4/nbt_server/wins/wins_dns_proxy.c index cd605907a8..4ebfc05fd7 100644 --- a/source4/nbt_server/wins/wins_dns_proxy.c +++ b/source4/nbt_server/wins/wins_dns_proxy.c @@ -87,7 +87,7 @@ void nbtd_wins_dns_proxy_query(struct nbt_name_socket *nbtsock, if (resolve_ctx == NULL) goto failed; resolve_context_add_host_method(resolve_ctx); - creq = resolve_name_send(resolve_ctx, name, iface->nbtsrv->task->event_ctx); + creq = resolve_name_send(resolve_ctx, s, name, iface->nbtsrv->task->event_ctx); if (!creq) goto failed; creq->async.fn = nbtd_wins_dns_proxy_handler; |