diff options
author | Christian Persch <chpe@src.gnome.org> | 2008-04-06 22:35:57 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2008-04-06 22:35:57 +0800 |
commit | 12483991c94e64d8ab9f23e6717ef7182319926e (patch) | |
tree | 9699d7bb6af97c295dd8869745b886f463241f95 /embed | |
parent | 9f6cfc6fd252ec0be67a6e6e9f58c7df3b4d43b8 (diff) | |
download | gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.tar gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.tar.gz gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.tar.bz2 gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.tar.lz gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.tar.xz gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.tar.zst gsoc2013-epiphany-12483991c94e64d8ab9f23e6717ef7182319926e.zip |
Fix mem leak.
svn path=/branches/gnome-2-22/; revision=8189
Diffstat (limited to 'embed')
-rw-r--r-- | embed/ephy-password-manager.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/embed/ephy-password-manager.c b/embed/ephy-password-manager.c index a702d713e..012529748 100644 --- a/embed/ephy-password-manager.c +++ b/embed/ephy-password-manager.c @@ -102,6 +102,11 @@ ephy_password_info_free (EphyPasswordInfo *info) g_free (info->host); g_free (info->username); g_free (info->password); + g_free (info->httpRealm); + g_free (info->passwordField); + g_free (info->usernameField); + g_free (info->formSubmitURL); + g_slice_free (EphyPasswordInfo, info); } } |