You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 23, 2026. It is now read-only.
In manager.rs, the surely_template() method uses unbounded recursion to traverse template collections. Without depth limits, this could cause stack overflow with deeply nested or circular references.
Suggested fix: Implement a maximum recursion depth check and detect circular references.
In
manager.rs, thesurely_template()method uses unbounded recursion to traverse template collections. Without depth limits, this could cause stack overflow with deeply nested or circular references.Suggested fix: Implement a maximum recursion depth check and detect circular references.