summaryrefslogtreecommitdiff
path: root/src/storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage.cpp')
-rw-r--r--src/storage.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/storage.cpp b/src/storage.cpp
index f68cb68..05b100a 100644
--- a/src/storage.cpp
+++ b/src/storage.cpp
@@ -821,14 +821,15 @@ bool Storage::replaceHead(UUID type, UUID id, const Ref & old, const Ref & ref)
optional<Ref> Storage::updateHead(UUID type, UUID id, const Ref & old, const std::function<Ref(const Ref &)> & f)
{
- Ref r = f(old);
- if (r.digest() == old.digest() || replaceHead(type, id, old, r))
+ auto cur = old.storage().headRef(type, id);
+ if (!cur)
+ return nullopt;
+
+ Ref r = f(*cur);
+ if (r.digest() == cur->digest() || replaceHead(type, id, *cur, r))
return r;
- if (auto cur = old.storage().headRef(type, id))
- return updateHead(type, id, *cur, f);
- else
- return nullopt;
+ return updateHead(type, id, *cur, f);
}
int Storage::watchHead(UUID type, UUID wid, const std::function<void(const Ref &)> watcher) const