From e54213f5257267ed232b2465337c39ddc8c73388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 16 Mar 2019 09:40:27 +0100 Subject: [PATCH] tpl/tplimpl: Fix mutex unlock --- tpl/tplimpl/template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tpl/tplimpl/template.go b/tpl/tplimpl/template.go index 8efeb6ce9..26a418108 100644 --- a/tpl/tplimpl/template.go +++ b/tpl/tplimpl/template.go @@ -107,7 +107,7 @@ type templateHandler struct { // template funcs etc. built-in. func (t *templateHandler) NewTextTemplate() tpl.TemplateParseFinder { t.mu.Lock() - t.mu.Unlock() + defer t.mu.Unlock() tt := &textTemplate{t: texttemplate.New("")} t.extTextTemplates = append(t.extTextTemplates, tt)