diff options
| author | Damien Laniel <dlaniel@entrouvert.com> | 2008-05-21 22:13:16 +0000 |
|---|---|---|
| committer | Damien Laniel <dlaniel@entrouvert.com> | 2008-05-21 22:13:16 +0000 |
| commit | cf4cf42f1aad394a20893c4bedfba863ef846575 (patch) | |
| tree | 1f863362abc686650f6f0c32db912de4876fea0d | |
| parent | a6ed1b1c110a662009a83fa656d01c70f15d678b (diff) | |
added a missing reference
| -rw-r--r-- | lasso/saml-2.0/profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/saml-2.0/profile.c b/lasso/saml-2.0/profile.c index f917d7f2..930ab40d 100644 --- a/lasso/saml-2.0/profile.c +++ b/lasso/saml-2.0/profile.c @@ -336,8 +336,8 @@ lasso_saml20_profile_set_session_from_dump_decrypt( } if (assertion->Subject != NULL && assertion->Subject->EncryptedID != NULL) { - assertion->Subject->NameID = LASSO_SAML2_NAME_ID( - assertion->Subject->EncryptedID->original_data); + assertion->Subject->NameID = g_object_ref( + assertion->Subject->EncryptedID->original_data); g_object_unref(assertion->Subject->EncryptedID); assertion->Subject->EncryptedID = NULL; } |
