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
In #4201 there were multiple stackalloc[Type] calls which needed to be replaced by something like stackalloc[Byte](explicitSize).asInstanceOf[Ptr[Type]] (because otherwise they caused segfaults). However not all of them were replaced. We should double check the remaining ones, to determine whether they're compiled correctly, or not (and just happen not to segfault).
In #4201 there were multiple
stackalloc[Type]
calls which needed to be replaced by something likestackalloc[Byte](explicitSize).asInstanceOf[Ptr[Type]]
(because otherwise they caused segfaults). However not all of them were replaced. We should double check the remaining ones, to determine whether they're compiled correctly, or not (and just happen not to segfault).At least the following ones remained:
stackalloc[timespec]
stackalloc[timespec]
The text was updated successfully, but these errors were encountered: