1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

fix negative index

Signed-off-by: Shuting Zhao <shutting06@gmail.com>
This commit is contained in:
Shuting Zhao 2021-02-25 18:36:13 -08:00
parent 517c60fadc
commit 7795f335c8

View file

@ -243,6 +243,9 @@ func getObject(path string, resource map[string]interface{}) (interface{}, error
if err != nil {
return nil, fmt.Errorf("cannot parse index in JSON Patch at %s: %v", strings.Join(paths[:i+1], "/"), err)
}
if idx < 0 {
idx = len(strippedResource.([]interface{})) - 1
}
}
if len(strippedResource.([]interface{})) <= idx {