From fe231231c68e1f117b6018e008d6d09812604043 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 5 Jun 2022 13:23:02 +0200 Subject: graphql: fix two invalid mutex lock leading to data races --- api/graphql/models/lazy_bug.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api/graphql/models/lazy_bug.go') diff --git a/api/graphql/models/lazy_bug.go b/api/graphql/models/lazy_bug.go index a7840df2..bc26aaca 100644 --- a/api/graphql/models/lazy_bug.go +++ b/api/graphql/models/lazy_bug.go @@ -49,13 +49,13 @@ func NewLazyBug(cache *cache.RepoCache, excerpt *cache.BugExcerpt) *lazyBug { } func (lb *lazyBug) load() error { + lb.mu.Lock() + defer lb.mu.Unlock() + if lb.snap != nil { return nil } - lb.mu.Lock() - defer lb.mu.Unlock() - b, err := lb.cache.ResolveBug(lb.excerpt.Id) if err != nil { return err -- cgit