Signed-off-by: Alfred Landrum <alfred.landrum@docker.com>
This commit is contained in:
Alfred Landrum 2017-02-03 08:47:55 -08:00
Родитель c3b660b112
Коммит 874a502b1d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C8DB14EF7641B383
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -40,8 +40,9 @@ func (c *RefCounter) Increment(path string) int {
}
}
m.count++
count := m.count
c.mu.Unlock()
return m.count
return count
}
// Decrement decreases the ref count for the given id and returns the current count
@ -62,6 +63,7 @@ func (c *RefCounter) Decrement(path string) int {
}
}
m.count--
count := m.count
c.mu.Unlock()
return m.count
return count
}