From: Carl Worth Date: Wed, 21 Oct 2009 21:00:37 +0000 (-0700) Subject: Convert notmuch_database_t to start using talloc. X-Git-Tag: 0.1~795 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=17b3c214ea123a0e03c5bfff8fc3826976f5ad64;ds=inline Convert notmuch_database_t to start using talloc. This will be handy as we can hang future talloc allocations off of the datbase now. --- diff --git a/database.cc b/database.cc index 1aef2a96..e73e210d 100644 --- a/database.cc +++ b/database.cc @@ -456,10 +456,8 @@ notmuch_database_open (const char *path) xapian_path = g_strdup_printf ("%s/%s", notmuch_path, "xapian"); - /* C++ is so nasty in requiring these casts. I'm almost tempted to - * write a C wrapper for Xapian... */ - notmuch = (notmuch_database_t *) xmalloc (sizeof (notmuch_database_t)); - notmuch->path = xstrdup (path); + notmuch = talloc (NULL, notmuch_database_t); + notmuch->path = talloc_strdup (notmuch, path); try { notmuch->xapian_db = new Xapian::WritableDatabase (xapian_path, @@ -488,8 +486,7 @@ notmuch_database_close (notmuch_database_t *notmuch) { delete notmuch->query_parser; delete notmuch->xapian_db; - free (notmuch->path); - free (notmuch); + talloc_free (notmuch); } const char *