diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-03-14 02:04:11 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-03-14 02:04:11 +0800 |
commit | e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7 (patch) | |
tree | 84bab9a2fec1e185dd5527b4bae13301d9a230d8 /src/ephy-profile-migration.c | |
parent | 2eccee1a93b59ef10709100c83d7dfcc26b87706 (diff) | |
download | gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.tar gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.tar.gz gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.tar.bz2 gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.tar.lz gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.tar.xz gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.tar.zst gsoc2013-epiphany-e4e77e11f33bf13a3fa1ad07b75bec13fb26b2b7.zip |
ephy-profile-migration: plug leak.
svn path=/trunk/; revision=8884
Diffstat (limited to 'src/ephy-profile-migration.c')
-rw-r--r-- | src/ephy-profile-migration.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ephy-profile-migration.c b/src/ephy-profile-migration.c index 576457ea4..c06f0f141 100644 --- a/src/ephy-profile-migration.c +++ b/src/ephy-profile-migration.c @@ -132,5 +132,6 @@ _ephy_profile_migrate () contents = g_strdup_printf ("%d", PROFILE_MIGRATION_VERSION); g_file_set_contents (migrated_file, contents, -1, NULL); g_free (contents); + g_free (migrated_file); } |