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
the stack overflow happens because taffy::node::Taffy::mark_dirty_internal::mark_dirty_recursive is getting called in an infinite loop
This is likely because there is a bug causing a cycle to be introduced into the node tree (making it not a tree anymore!). Taffy's mark_dirty method recurses up the tree until it finds a node with no parent. But if it never finds such a node because there is a cycle then it will enter an infinite loop.
Running this code results in a stack overflow. The code uses
libloading
to load a shared librarylibplugin.so
this the
libplugin.so
codethis is the
cargo run
outputThe text was updated successfully, but these errors were encountered: