Derive key for decoding should pass under recursion

This commit is contained in:
Ayaz Hafiz 2023-02-22 10:25:58 -06:00
parent f3d1582a5e
commit 99d31aa74c
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58

View file

@ -100,7 +100,8 @@ impl FlatDecodable {
Self::from_var(subs, range.default_compilation_variable())
}
//
Content::RecursionVar { .. } => Err(Underivable),
Content::RecursionVar { structure, .. } => Self::from_var(subs, structure),
//
Content::Error => Err(Underivable),
Content::FlexVar(_)
| Content::RigidVar(_)