mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib/create: fix memory leak, ensure *database=NULL on error
This code previously relied on _finish_open to free the notmuch struct on errors (except for the case of database == NULL, which was a potential double free). When we removed those frees from _finish_open, we introduced a (small) memory leak. In this commit, fix the memory leak, and harmonize the on-error behaviour with n_d_open_with_config.
This commit is contained in:
parent
f3fcdd2dda
commit
2ba50b5230
2 changed files with 8 additions and 4 deletions
10
lib/open.cc
10
lib/open.cc
|
@ -714,10 +714,16 @@ notmuch_database_create_with_config (const char *database_path,
|
|||
else
|
||||
free (message);
|
||||
}
|
||||
if (status && notmuch) {
|
||||
notmuch_database_destroy (notmuch);
|
||||
notmuch = NULL;
|
||||
}
|
||||
|
||||
if (database)
|
||||
*database = notmuch;
|
||||
else
|
||||
talloc_free (notmuch);
|
||||
|
||||
if (notmuch)
|
||||
notmuch->open = true;
|
||||
return status;
|
||||
}
|
||||
|
||||
|
|
|
@ -891,7 +891,6 @@ EOF
|
|||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "create: database set to null on missing config"
|
||||
test_subtest_known_broken
|
||||
cat c_head3 - c_tail3 <<'EOF' | test_C ${MAIL_DIR} "/nonexistent"
|
||||
notmuch_status_t st = notmuch_database_create_with_config(argv[1],argv[2], NULL, &db, NULL);
|
||||
EOF
|
||||
|
@ -903,7 +902,6 @@ EOF
|
|||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "create: database set to null on missing config (env)"
|
||||
test_subtest_known_broken
|
||||
old_NOTMUCH_CONFIG=${NOTMUCH_CONFIG}
|
||||
NOTMUCH_CONFIG="/nonexistent"
|
||||
cat c_head3 - c_tail3 <<'EOF' | test_C ${MAIL_DIR}
|
||||
|
|
Loading…
Reference in a new issue