summaryrefslogtreecommitdiffstats
path: root/helpers/general.go
diff options
context:
space:
mode:
authorEphex2 <alexandrejoseph.tessier@gmail.com>2022-01-26 17:44:20 -0500
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-01-27 10:38:50 +0100
commit22055176d23417ac9039f14efdc668ed6cc6a7b9 (patch)
treed3f0af4ab9a30805872aab9075d30bd32932e24e /helpers/general.go
parent7a080b624e73fe3a10cfab9ee4fa8e9b7e7c31ad (diff)
general: Fix issue causing log threads to hang indefinitely when print() panics
The function printIfNotPrinted() defined for DistinctLogger unlocked the mutex within the logger only after the print() function ran. If print panics, the mutex would stay locked and future attempts to read or write from the logger mutex would cause the goroutine to hang indefinitely. Deferred the unlocking of the mutex to prevent this. Also, put l.m[key] before the print() call since this will prevent another bug where the same warning potentially gets logged multiple times if the print() call panics. Fixes #9380
Diffstat (limited to 'helpers/general.go')
-rw-r--r--helpers/general.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/helpers/general.go b/helpers/general.go
index 236a763fa..472ebc4a4 100644
--- a/helpers/general.go
+++ b/helpers/general.go
@@ -360,9 +360,10 @@ func (l *DistinctLogger) printIfNotPrinted(level, logStatement string, print fun
return
}
l.Lock()
+ defer l.Unlock()
+ l.m[key] = true // Placing this after print() can cause duplicate warning entries to be logged when --panicOnWarning is true.
print()
- l.m[key] = true
- l.Unlock()
+
}
// NewDistinctErrorLogger creates a new DistinctLogger that logs ERRORs