From fda03bd562f9a5849317bd3ad27e7ee04031ecd0 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sat, 30 Apr 2011 10:09:12 +0300 Subject: [PATCH] * mu-store.cc: fix tiny leak --- src/mu-store.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mu-store.cc b/src/mu-store.cc index e1eadcac..e5b0cf29 100644 --- a/src/mu-store.cc +++ b/src/mu-store.cc @@ -69,6 +69,8 @@ struct _MuStore { try { mu_contacts_destroy (_contacts); mu_store_flush (this); + + g_free (_version); MU_WRITE_LOG ("closing xapian database with %d documents", (int)_db.get_doccount());