From: Nick Porter Date: Mon, 28 Apr 2025 14:07:53 +0000 (+0100) Subject: Subrequests are talloc'd not reserved from the slab X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37ecf0ecb2c03210a30619361342429363b6852c;p=thirdparty%2Ffreeradius-server.git Subrequests are talloc'd not reserved from the slab --- diff --git a/src/lib/io/worker.c b/src/lib/io/worker.c index dc7b30f411..7d53b68d3b 100644 --- a/src/lib/io/worker.c +++ b/src/lib/io/worker.c @@ -1222,7 +1222,7 @@ static void _worker_request_done_detached(request_t *request, UNUSED rlm_rcode_t * All other requests must be freed by the * code which allocated them. */ - request_slab_release(request); + talloc_free(request); }