summaryrefslogtreecommitdiff
path: root/tests/notes/notesref.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-06-04 17:31:42 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2014-06-04 17:31:42 +0200
commit57cb1179e5c9c8f5c27c9115f13f1cae5d0f87a0 (patch)
tree67871086b1437dcd410979b423cd3ba140ab9257 /tests/notes/notesref.c
parent90befde4a1938641dfdb9a7bdb9f361d1de5c26f (diff)
downloadlibgit2-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/notes/notesref.c')
-rw-r--r--tests/notes/notesref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/notes/notesref.c b/tests/notes/notesref.c
index a33141979..197bad956 100644
--- a/tests/notes/notesref.c
+++ b/tests/notes/notesref.c
@@ -38,7 +38,7 @@ void test_notes_notesref__config_corenotesref(void)
cl_git_pass(git_signature_now(&_sig, "alice", "alice@example.com"));
cl_git_pass(git_oid_fromstr(&oid, "8496071c1b46c854b31185ea97743be6a8774479"));
- cl_git_pass(git_repository_config(&_cfg, _repo));
+ cl_git_pass(git_repository_config_writable(&_cfg, _repo));
cl_git_pass(git_config_set_string(_cfg, "core.notesRef", "refs/notes/mydefaultnotesref"));