summaryrefslogtreecommitdiff
path: root/radmsg.c
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2013-08-28 13:48:49 +0200
committerLinus Nordberg <linus@nordberg.se>2013-09-06 15:16:27 +0200
commit26c8061a9b931a817756946863fea057dd81b656 (patch)
treeee82f57a22ae63560fb8d0c3ea11afecfffb19b4 /radmsg.c
parentd413b14b2c6c09f9dc351106bcb3c50975ace189 (diff)
Make a _copy_ of the attributes when copying them.
Doh! Closes RADSECPROXY-53.
Diffstat (limited to 'radmsg.c')
-rw-r--r--radmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/radmsg.c b/radmsg.c
index e422f90..6e33990 100644
--- a/radmsg.c
+++ b/radmsg.c
@@ -118,7 +118,7 @@ int radmsg_copy_attrs(struct radmsg *dst,
int n = 0;
for (node = list_first(list); node; node = list_next(node)) {
- if (radmsg_add(dst, (struct tlv *) node->data) != 1) {
+ if (radmsg_add(dst, copytlv((struct tlv *) node->data)) != 1) {
n = -n;
break;
}