diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2009-08-21 21:47:47 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@gnome.org> | 2009-08-21 21:48:23 +0800 |
commit | 5a89234873d5c709ee852e2b43220f9c8c0a2033 (patch) | |
tree | 5db5cb41140e1d066f6a1769fba45951d7986f56 /libempathy | |
parent | 68bfadf58864571de7be1d9f3c7532b563483eb3 (diff) | |
download | gsoc2013-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.c | 2 |
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)) { |