http_ntlm: fix panic due to unintialized embedded field (#3120)

This commit is contained in:
Mohammed Al Sahaf 2020-03-08 03:58:44 +03:00 committed by GitHub
parent 217419f6d9
commit fb5168d3b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -61,7 +61,11 @@ type NTLMTransport struct {
func (NTLMTransport) CaddyModule() caddy.ModuleInfo { func (NTLMTransport) CaddyModule() caddy.ModuleInfo {
return caddy.ModuleInfo{ return caddy.ModuleInfo{
ID: "http.reverse_proxy.transport.http_ntlm", ID: "http.reverse_proxy.transport.http_ntlm",
New: func() caddy.Module { return new(NTLMTransport) }, New: func() caddy.Module {
m := new(NTLMTransport)
m.HTTPTransport = new(HTTPTransport)
return m
},
} }
} }