summaryrefslogtreecommitdiffstats
path: root/lasso
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-27 01:12:53 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-27 01:12:53 +0000
commit3ae917244469be00de7178c5949df61e6cbeded2 (patch)
tree35334421c0988730944316d47f720c9e29aa4644 /lasso
parent831277c6b7da16ea21508c27d35dfe4d020c9167 (diff)
downloadlasso-3ae917244469be00de7178c5949df61e6cbeded2.tar.gz
lasso-3ae917244469be00de7178c5949df61e6cbeded2.tar.xz
lasso-3ae917244469be00de7178c5949df61e6cbeded2.zip
Removed 2 useless lasso_node_copy
Diffstat (limited to 'lasso')
-rw-r--r--lasso/id-ff/login.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/id-ff/login.c b/lasso/id-ff/login.c
index 9c564858..e765147c 100644
--- a/lasso/id-ff/login.c
+++ b/lasso/id-ff/login.c
@@ -121,7 +121,7 @@ lasso_login_add_response_assertion(LassoLogin *login,
/* store assertion in user object */
lasso_user_add_assertion(LASSO_PROFILE_CONTEXT(login)->user,
LASSO_PROFILE_CONTEXT(login)->remote_providerID,
- lasso_node_copy(assertion));
+ assertion);
}
lasso_node_destroy(authentication_statement);
@@ -558,7 +558,7 @@ lasso_login_create_user(LassoLogin *login,
/* put response assertion in user object */
lasso_user_add_assertion(LASSO_PROFILE_CONTEXT(login)->user,
LASSO_PROFILE_CONTEXT(login)->remote_providerID,
- lasso_node_copy(assertion));
+ assertion);
/* put the 2 NameIdentifiers in user object */
nameIdentifier = lasso_node_get_child(assertion, "NameIdentifier", lassoSamlAssertionHRef);