mirror of
https://github.com/mikefarah/yq.git
synced 2026-07-10 00:05:38 +00:00
fix: runtime error: invalid memory address or nil pointer dereference
This commit is contained in:
parent
bbe3055006
commit
2b4f0b5a87
@ -46,6 +46,9 @@ func (dec *jsonDecoder) Decode() (*CandidateNode, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (dec *jsonDecoder) convertToYamlNode(data *orderedMap) (*yaml.Node, error) {
|
func (dec *jsonDecoder) convertToYamlNode(data *orderedMap) (*yaml.Node, error) {
|
||||||
|
if data == nil {
|
||||||
|
return createScalarNode(nil, "null"), nil
|
||||||
|
}
|
||||||
if data.kv == nil {
|
if data.kv == nil {
|
||||||
switch rawData := data.altVal.(type) {
|
switch rawData := data.altVal.(type) {
|
||||||
case nil:
|
case nil:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user