Merge pull request #1450 from crazy-max/fix-hclparser-jsonfunc

hcl: SrcRange not checked when solving JSON func calls
This commit is contained in:
Justin Chadwell 2022-12-05 15:17:23 +00:00 committed by GitHub
commit 16f4dfafb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ func appendJSONFuncCalls(exp hcl.Expression, m map[string]struct{}) error {
return nil
}
rng := src.FieldByName("SrcRange")
if val.IsZero() {
if rng.IsZero() {
return nil
}
var stringVal struct {