aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2009-08-21 21:47:47 +0800
committerKjartan Maraas <kmaraas@gnome.org>2009-08-21 21:48:23 +0800
commit5a89234873d5c709ee852e2b43220f9c8c0a2033 (patch)
tree5db5cb41140e1d066f6a1769fba45951d7986f56 /libempathy
parent68bfadf58864571de7be1d9f3c7532b563483eb3 (diff)
downloadgsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.tar
gsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.tar.gz
gsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.tar.bz2
gsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.tar.lz
gsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.tar.xz
gsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.tar.zst
gsoc2013-empathy-5a89234873d5c709ee852e2b43220f9c8c0a2033.zip
Don't use deprecated g_mapped_file_free()
Diffstat (limited to 'libempathy')
-rw-r--r--libempathy/empathy-log-store-empathy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c
index b814defe7..0f67073a9 100644
--- a/libempathy/empathy-log-store-empathy.c
+++ b/libempathy/empathy-log-store-empathy.c
@@ -608,7 +608,7 @@ log_store_empathy_search_new (EmpathyLogStore *self,
contents = g_mapped_file_get_contents (file);
contents_casefold = g_utf8_casefold (contents, length);
- g_mapped_file_free (file);
+ g_mapped_file_unref (file);
if (strstr (contents_casefold, text_casefold))
{