diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-02-08 18:02:26 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-02-08 18:02:26 +0000 |
| commit | e470c7fc4b018939d69cdac584038e3f5b8c481e (patch) | |
| tree | af744c7275f93bac249b8ccc475956751b1e4605 | |
| parent | 5362e36c0c9d874c659dcf7fce03e7628d0f2f82 (diff) | |
replaced free() with correct libraries function (glib and libxml2)
| -rw-r--r-- | lasso/xml/tools.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/xml/tools.c b/lasso/xml/tools.c index 8c5f4c89..41aa579d 100644 --- a/lasso/xml/tools.c +++ b/lasso/xml/tools.c @@ -393,9 +393,9 @@ done: g_free(new_query); xmlFree(digest); BIO_free(bio); - free(sigret); + g_free(sigret); xmlFree(b64_sigret); - free(e_b64_sigret); + xmlFree(e_b64_sigret); return s_new_query; } |
