mirror of
https://github.com/mgechev/revive.git
synced 2025-03-19 21:07:46 +02:00
fix: add missing defer when unlocking mutex (#879)
This commit is contained in:
parent
9a87e6fd82
commit
0357df7bc0
@ -19,7 +19,7 @@ type FunctionLength struct {
|
|||||||
|
|
||||||
func (r *FunctionLength) configure(arguments lint.Arguments) {
|
func (r *FunctionLength) configure(arguments lint.Arguments) {
|
||||||
r.Lock()
|
r.Lock()
|
||||||
r.Unlock()
|
defer r.Unlock()
|
||||||
if !r.configured {
|
if !r.configured {
|
||||||
maxStmt, maxLines := r.parseArguments(arguments)
|
maxStmt, maxLines := r.parseArguments(arguments)
|
||||||
r.maxStmt = int(maxStmt)
|
r.maxStmt = int(maxStmt)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user