From: Jaroslav Kysela Date: Tue, 23 Oct 2018 08:51:49 +0000 (+0200) Subject: access: fix access_copy() for aa_auth, fixes #5285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=275aec3c3cf9b3c368365249c8bf3d37e57cf043;p=thirdparty%2Ftvheadend.git access: fix access_copy() for aa_auth, fixes #5285 --- diff --git a/src/access.c b/src/access.c index ba73c700d..a9e1990e4 100644 --- a/src/access.c +++ b/src/access.c @@ -303,6 +303,8 @@ access_copy(access_t *src) } if (src->aa_chtags) dst->aa_chtags = htsmsg_copy(src->aa_chtags); + if (src->aa_auth) + dst->aa_auth = strdup(src->aa_auth); return dst; }