From b4f73b9cff63bac52be5a80acecaae293f242628 Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Tue, 29 Mar 2005 13:19:05 +0000 Subject: free up Status if not NULL. --- lasso/id-ff/profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lasso/id-ff/profile.c b/lasso/id-ff/profile.c index 5f4db337..1fea54d8 100644 --- a/lasso/id-ff/profile.c +++ b/lasso/id-ff/profile.c @@ -299,7 +299,7 @@ lasso_profile_set_response_status(LassoProfile *profile, const char *statusCodeV if (LASSO_IS_SAMLP_RESPONSE(profile->response)) { LassoSamlpResponse *response = LASSO_SAMLP_RESPONSE(profile->response); -/* if (response->Status) lasso_node_destroy(LASSO_NODE(response->Status)); */ + if (response->Status) lasso_node_destroy(LASSO_NODE(response->Status)); response->Status = status; return; } -- cgit