fix: runtime error: invalid memory address or nil pointer dereference (#1649)

This commit is contained in:
Arthur Fritz Santiago
2023-05-04 14:43:48 +10:00
committed by GitHub
parent 91f47ff307
commit d14eaa9b49
+3
View File
@@ -46,6 +46,9 @@ func (dec *jsonDecoder) Decode() (*CandidateNode, error) {
}
func (dec *jsonDecoder) convertToYamlNode(data *orderedMap) (*yaml.Node, error) {
if data == nil {
return createScalarNode(nil, "null"), nil
}
if data.kv == nil {
switch rawData := data.altVal.(type) {
case nil: