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
At some size of Uint, the recursion in from_base_le will cause stack overflows even for valid iterator sizes. This does not happen in from_base_be, as it does not recurse for each iterator item
Set a safe maximum size for the recursive from_base_le
Provide a backup strategy that is used only above that size.
This strategy may use alloc. If so, return an error if the alloc feature is not enable.
The text was updated successfully, but these errors were encountered:
At some size of
Uint
, the recursion infrom_base_le
will cause stack overflows even for valid iterator sizes. This does not happen infrom_base_be
, as it does not recurse for each iterator itemfrom_base_le
alloc
. If so, return an error if the alloc feature is not enable.The text was updated successfully, but these errors were encountered: