mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Do not modify Node argument passed to initInlineModule
It causes config.Map state to be corrupted which make some directives "disappear". Closes #84.
This commit is contained in:
parent
8d63b50750
commit
5df1dad72c
2 changed files with 5 additions and 3 deletions
|
@ -48,11 +48,12 @@ func initInlineModule(modObj module.Module, globals map[string]interface{}, node
|
|||
//
|
||||
// Expected: modName modArgs { ... }
|
||||
// Actual: something modName modArgs { ... }
|
||||
node.Name = node.Args[0]
|
||||
node.Args = node.Args[1:]
|
||||
nodeCpy := *node
|
||||
nodeCpy.Name = node.Args[0]
|
||||
nodeCpy.Args = node.Args[1:]
|
||||
|
||||
log.Debugln("module init", modObj.Name(), modObj.InstanceName(), "(inline)")
|
||||
return modObj.Init(config.NewMap(globals, node))
|
||||
return modObj.Init(config.NewMap(globals, &nodeCpy))
|
||||
}
|
||||
|
||||
func deliverDirective(m *config.Map, node *config.Node) (interface{}, error) {
|
||||
|
|
|
@ -303,6 +303,7 @@ func (m *Map) Float(name string, inheritGlobal, required bool, defaultVal float6
|
|||
// mapper is a function that should convert configuration directive arguments
|
||||
// into variable value. Both functions may fail with errors, configuration
|
||||
// processing will stop immediately then.
|
||||
// Note: mapper function should not modify passed values.
|
||||
//
|
||||
// store is where the value returned by mapper should be stored. Can be nil
|
||||
// (value will be saved only in Map.Values).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue