lib/ur: Properly initialize map in failure data (fixes #8479) (#8480)

This commit is contained in:
Jakob Borg 2022-08-03 10:41:26 +02:00 committed by GitHub
parent 5c69761bc8
commit cc54488e55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -54,6 +54,7 @@ func FailureDataWithGoroutines(description string) FailureData {
return FailureData{
Description: description,
Goroutines: buf.String(),
Extra: make(map[string]string),
}
}