Fix the pointer initialization

If the overwriteStruct() finds an uninitialized pointer, it tries to initialize it,
but does it incorrectly. It tries to assign a pointer to pointer, instead of pointer.

Signed-off-by: Gladkov Alexey <agladkov@redhat.com>
This commit is contained in:
Gladkov Alexey 2017-11-14 15:16:02 +01:00
parent e5b5e44386
commit c9eba1a5bb
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ func (p *Parser) overwriteStruct(v reflect.Value, fullpath string, path []string
}
case reflect.Ptr:
if field.IsNil() {
field.Set(reflect.New(sf.Type))
field.Set(reflect.New(field.Type().Elem()))
}
}