]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
resolve: unref stream after completion processes
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 12 Jul 2018 03:57:52 +0000 (12:57 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 12 Jul 2018 03:57:55 +0000 (12:57 +0900)
Fixes #9511.

src/resolve/resolved-dns-transaction.c

index 36f9609b66468bffafed287f9abed1c50674d876..89d311811a7dbb5271f0f114e6671d87e8535390 100644 (file)
@@ -518,12 +518,13 @@ static int on_stream_connection(DnsStream *s) {
 }
 
 static int on_stream_complete(DnsStream *s, int error) {
+        _cleanup_(dns_stream_unrefp) DnsStream *p = NULL;
         DnsTransaction *t, *n;
         int r = 0;
 
         /* Do not let new transactions use this stream */
         if (s->server && s->server->stream == s)
-                s->server->stream = dns_stream_unref(s->server->stream);
+                p = TAKE_PTR(s->server->stream);
 
         if (ERRNO_IS_DISCONNECT(error) && s->protocol != DNS_PROTOCOL_LLMNR) {
                 usec_t usec;