]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Subrequests are talloc'd not reserved from the slab
authorNick Porter <nick@portercomputing.co.uk>
Mon, 28 Apr 2025 14:07:53 +0000 (15:07 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Mon, 28 Apr 2025 14:07:53 +0000 (15:07 +0100)
src/lib/io/worker.c

index dc7b30f411ff6e99f3bca2dc1992f8b79969e50a..7d53b68d3b3d0616b162fb91e66fb72d4c04cc99 100644 (file)
@@ -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);
 }