diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-05-25 12:59:51 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-05-25 12:59:51 +0000 |
| commit | ecc8b1a0b6031cefb3f9e60e03003e2f6bfc50c5 (patch) | |
| tree | 25907dafdfabc249c941ee2420a392383b23f57d | |
| parent | 3dad242cb2e4a27731622d6c94ae7fa330bad227 (diff) | |
| download | lasso-ecc8b1a0b6031cefb3f9e60e03003e2f6bfc50c5.tar.gz lasso-ecc8b1a0b6031cefb3f9e60e03003e2f6bfc50c5.tar.xz lasso-ecc8b1a0b6031cefb3f9e60e03003e2f6bfc50c5.zip | |
Added 4 lasso_node_destroy()
| -rw-r--r-- | lasso/Attic/protocols/elements/authentication_statement.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lasso/Attic/protocols/elements/authentication_statement.c b/lasso/Attic/protocols/elements/authentication_statement.c index f9101e28..4c4c0616 100644 --- a/lasso/Attic/protocols/elements/authentication_statement.c +++ b/lasso/Attic/protocols/elements/authentication_statement.c @@ -117,5 +117,10 @@ lasso_authentication_statement_new(const xmlChar *authenticationMethod, lasso_saml_subject_statement_abstract_set_subject(LASSO_SAML_SUBJECT_STATEMENT_ABSTRACT(statement), LASSO_SAML_SUBJECT(subject)); + lasso_node_destroy(subject); + lasso_node_destroy(identifier); + lasso_node_destroy(idp_identifier); + lasso_node_destroy(subject_confirmation); + return (statement); } |
