From f0ac327307440f96c13de6bb9dcb21ee663e1a7f Mon Sep 17 00:00:00 2001 From: flouthoc Date: Sat, 7 Aug 2021 18:03:02 +0530 Subject: [PATCH] defs-zos: [Fix] prevent schema parsers from hitting recursion-loop while resolving types. Signed-off-by: flouthoc --- schema/defs-zos.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/schema/defs-zos.json b/schema/defs-zos.json index 4152e40d7..f0deee9c1 100644 --- a/schema/defs-zos.json +++ b/schema/defs-zos.json @@ -32,16 +32,16 @@ "$ref": "defs.json#/definitions/FilePath" }, "type": { - "$ref": "defs-zos.json#/definitions/FileType" + "$ref": "#/definitions/FileType" }, "major": { - "$ref": "defs-zos.json#/definitions/Major" + "$ref": "#/definitions/Major" }, "minor": { - "$ref": "defs-zos.json#/definitions/Minor" + "$ref": "#/definitions/Minor" }, "fileMode": { - "$ref": "defs-zos.json#/definitions/FileMode" + "$ref": "#/definitions/FileMode" }, "uid": { "$ref": "defs.json#/definitions/UID"