diff options
| author | Damien Laniel <dlaniel@entrouvert.com> | 2008-05-21 09:22:08 +0000 |
|---|---|---|
| committer | Damien Laniel <dlaniel@entrouvert.com> | 2008-05-21 09:22:08 +0000 |
| commit | b3d861afa2b019a964901be125e1a9b2bf5bf376 (patch) | |
| tree | 8f5838d123faf75cd9e06bebd9802d921c40fec2 | |
| parent | 2b9220186ab9a84db8ef9e996e22ec93e43b867a (diff) | |
| download | lasso-b3d861afa2b019a964901be125e1a9b2bf5bf376.tar.gz lasso-b3d861afa2b019a964901be125e1a9b2bf5bf376.tar.xz lasso-b3d861afa2b019a964901be125e1a9b2bf5bf376.zip | |
useless variables detroyer; they're already freed by snippets
| -rw-r--r-- | lasso/id-ff/profile.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/lasso/id-ff/profile.c b/lasso/id-ff/profile.c index db370ae3..e2863136 100644 --- a/lasso/id-ff/profile.c +++ b/lasso/id-ff/profile.c @@ -506,41 +506,6 @@ dispose(GObject *object) lasso_server_destroy(profile->server); profile->server = NULL; - if (profile->request) { - lasso_node_destroy(profile->request); - profile->request = NULL; - } - - if (profile->response) { - lasso_node_destroy(profile->response); - profile->response = NULL; - } - - if (profile->nameIdentifier) { - lasso_node_destroy(profile->nameIdentifier); - profile->nameIdentifier = NULL; - } - - if (profile->remote_providerID) { - g_free(profile->remote_providerID); - profile->remote_providerID = NULL; - } - - if (profile->msg_url) { - g_free(profile->msg_url); - profile->msg_url = NULL; - } - - if (profile->msg_body) { - g_free(profile->msg_body); - profile->msg_body = NULL; - } - - if (profile->msg_relayState) { - g_free(profile->msg_relayState); - profile->msg_relayState = NULL; - } - lasso_identity_destroy(profile->identity); profile->identity = NULL; |
