From: Alan T. DeKok Date: Sun, 4 Feb 2024 17:28:28 +0000 (-0500) Subject: I do have loathing for compilers which don't produce error messages X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=21ecc812a32e99ccfb4a6915cb5cca8c69025673;p=thirdparty%2Ffreeradius-server.git I do have loathing for compilers which don't produce error messages --- diff --git a/src/protocols/radius/decode.c b/src/protocols/radius/decode.c index 92d0358840f..171ab5eca70 100644 --- a/src/protocols/radius/decode.c +++ b/src/protocols/radius/decode.c @@ -2092,7 +2092,7 @@ ssize_t fr_radius_decode_foreign(TALLOC_CTX *ctx, fr_pair_list_t *out, while (attr < end) { slen = fr_radius_decode_pair(ctx, out, attr, (end - attr), &decode_ctx); if (slen < 0) { - fail: +// fail: talloc_free(decode_ctx.tmp_ctx); talloc_free(decode_ctx.tags); return slen;