From f5c6a8553c5b6cbf2e2a58307b78ff06282d0737 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 4 Nov 2019 13:43:39 -0700 Subject: Prepare for beta 9 tag --- caddyconfig/httpcaddyfile/directives.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'caddyconfig') diff --git a/caddyconfig/httpcaddyfile/directives.go b/caddyconfig/httpcaddyfile/directives.go index e56d101..acdca20 100644 --- a/caddyconfig/httpcaddyfile/directives.go +++ b/caddyconfig/httpcaddyfile/directives.go @@ -64,8 +64,12 @@ func RegisterHandlerDirective(dir string, setupFunc UnmarshalHandlerFunc) { return nil, err } if ok { - tokens := h.Dispenser.Delete() // strip matcher token - h.Dispenser = caddyfile.NewDispenser(tokens) + // strip matcher token; we don't need to + // use the return value here because a + // new dispenser should have been made + // solely for this directive's tokens, + // with no other uses of same slice + h.Dispenser.Delete() } h.Dispenser.Reset() // pretend this lookahead never happened -- cgit v1.2.3