From: Arran Cudbard-Bell Date: Mon, 8 Feb 2021 22:46:21 +0000 (+0000) Subject: Typo X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c62028fc2aa9e1902155fa42fb42a6616fbefdee;p=thirdparty%2Ffreeradius-server.git Typo --- diff --git a/src/lib/util/value.c b/src/lib/util/value.c index 13443897f64..6b38f8aeff5 100644 --- a/src/lib/util/value.c +++ b/src/lib/util/value.c @@ -3359,7 +3359,7 @@ int fr_value_box_strtrim(TALLOC_CTX *ctx, fr_value_box_t *vb) if (!fr_cond_assert(vb->type == FR_TYPE_STRING)) return -1; len = strlen(vb->vb_strvalue); - str = talloc_realloc(ctx, UNCONST(char *, &vb->vb_strvalue), char, len + 1); + str = talloc_realloc(ctx, UNCONST(char *, vb->vb_strvalue), char, len + 1); if (!str) { fr_strerror_const("Failed re-allocing string buffer"); return -1;