diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2006-11-04 15:23:48 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2006-11-04 15:23:48 +0000 |
| commit | 5be91933582db0b4587f21ca3234746dd23a62a8 (patch) | |
| tree | f77ded82ad8162e83b086607763fb45a1892eb54 | |
| parent | bb60709b78473f5b0b3719d8ac63f4aae01ef493 (diff) | |
fixed small memory leak in saml2 slo
| -rw-r--r-- | lasso/saml-2.0/logout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lasso/saml-2.0/logout.c b/lasso/saml-2.0/logout.c index 5463532d..a237452c 100644 --- a/lasso/saml-2.0/logout.c +++ b/lasso/saml-2.0/logout.c @@ -185,6 +185,8 @@ lasso_saml20_logout_build_request_msg(LassoLogout *logout, LassoProvider *remote return critical_error(LASSO_PROFILE_ERROR_BUILDING_QUERY_FAILED); } profile->msg_url = g_strdup_printf("%s?%s", url, query); + profile->msg_body = NULL; + g_free(url); return 0; } |
