ipn/ipnlocal: fix missing defer in testExtension.Shutdown

Updates #cleanup

Signed-off-by: Nick Khyl <nickk@tailscale.com>
pull/16486/head
Nick Khyl 5 months ago committed by Nick Khyl
parent f1c7b463cd
commit ea4018b757

@ -1230,7 +1230,7 @@ func (e *testExtension) InitCalled() bool {
func (e *testExtension) Shutdown() (err error) { func (e *testExtension) Shutdown() (err error) {
e.t.Helper() e.t.Helper()
e.mu.Lock() e.mu.Lock()
e.mu.Unlock() defer e.mu.Unlock()
if e.ShutdownHook != nil { if e.ShutdownHook != nil {
err = e.ShutdownHook(e) err = e.ShutdownHook(e)
} }

Loading…
Cancel
Save