-
Notifications
You must be signed in to change notification settings - Fork 281
Closed
Description
Using version 1.4.4 of Microsoft.OpenApi.
Describe the bug
When using the copy constructor of OpenApiSchema it comes in a recursive call and end with a stackoverflow exception.
To Reproduce
OpenApiSchema baseSchema = new OpenApiSchema()
{
Type = "string",
Format = "date"
};
OpenApiSchema actualSchema = new OpenApiSchema(baseSchema)
{
Nullable = true
};The "perpetrator" is the property "AdditionalProperties", this in itself is also a schema but is "copied" with AdditionalProperties = new(schema?.AdditionalProperties); so if null the constructor is again called the original parameter 'schema' and when not null it calls the constructor with AdditionalProperties as a parameter, and this is repeated untill it encounters a null and crashes.
Expected behavior
I expected to get a new OpenApiSchema with the properties from the baseSchema and the explicitly set new properties.
Metadata
Metadata
Assignees
Labels
type:bugA broken experienceA broken experience