diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2014-06-04 17:31:42 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-06-04 17:31:42 +0200 |
commit | 57cb1179e5c9c8f5c27c9115f13f1cae5d0f87a0 (patch) | |
tree | 67871086b1437dcd410979b423cd3ba140ab9257 /tests/refs/reflog/reflog.c | |
parent | 90befde4a1938641dfdb9a7bdb9f361d1de5c26f (diff) | |
download | libgit2-cmn/config-default-snapshot.tar.gz |
Make the default repository config getter return a snapshotcmn/config-default-snapshot
You should always use a snapshot, with the sole exception of writing to
the configuration.
Any reads that are not against a snapshot have race conditions, both in
terms of returned values as well as dangling pointers.
Diffstat (limited to 'tests/refs/reflog/reflog.c')
-rw-r--r-- | tests/refs/reflog/reflog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/refs/reflog/reflog.c b/tests/refs/reflog/reflog.c index 792b0f05d..8b2ff535a 100644 --- a/tests/refs/reflog/reflog.c +++ b/tests/refs/reflog/reflog.c @@ -302,7 +302,7 @@ void test_refs_reflog_reflog__logallrefupdates_bare_set_false(void) { git_config *config; - cl_git_pass(git_repository_config(&config, g_repo)); + cl_git_pass(git_repository_config_writable(&config, g_repo)); cl_git_pass(git_config_set_bool(config, "core.logallrefupdates", false)); git_config_free(config); @@ -313,7 +313,7 @@ void test_refs_reflog_reflog__logallrefupdates_bare_unset(void) { git_config *config; - cl_git_pass(git_repository_config(&config, g_repo)); + cl_git_pass(git_repository_config_writable(&config, g_repo)); cl_git_pass(git_config_delete_entry(config, "core.logallrefupdates")); git_config_free(config); @@ -328,7 +328,7 @@ void test_refs_reflog_reflog__logallrefupdates_nonbare_set_false(void) g_repo = cl_git_sandbox_init("testrepo"); - cl_git_pass(git_repository_config(&config, g_repo)); + cl_git_pass(git_repository_config_writable(&config, g_repo)); cl_git_pass(git_config_set_bool(config, "core.logallrefupdates", false)); git_config_free(config); |