X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/9155ea97b695b6eb5fca1ee79f57b334f6c4ef53..755e6619263d316dc46fa504e0c333c963ec8eaa:/identify.c diff --git a/identify.c b/identify.c index dd37a6a..e099fb9 100644 --- a/identify.c +++ b/identify.c @@ -82,6 +82,7 @@ static void id_done(id *i) /* --- Dispose of the block --- */ REFFD_DEC(i->q.r); + xfree((/*unconst*/ char *)i->q.desc); xfree(i); } @@ -166,6 +167,7 @@ void identify(const id_req *q) i = xmalloc(sizeof(*i)); i->q = *q; + i->q.desc = xstrdup(q->desc); REFFD_INC(i->q.r); str_sanitize(i->host, inet_ntoa(q->rsin.sin_addr), sizeof(i->host));