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 the code linked below, the LHS of an && expression is used as an array bounds guard for the RHS.
This seems to be miscompiled, such that assigning each subexpression to a local inside the loop works fine, but segfaults occur when putting the whole thing as the while condition.
I'm not really sure what to do with this bug. The comment about the bug is still in servo (in src/components/main/layout/util.rs), but the code has changed so that it doesn't look like I could just switch back to the old version... Played around a bit trying to trigger it with small cases, but didn't find anything.
In the code linked below, the LHS of an && expression is used as an array bounds guard for the RHS.
This seems to be miscompiled, such that assigning each subexpression to a local inside the loop works fine, but segfaults occur when putting the whole thing as the
while
condition.servo/servo@b0536d7
The text was updated successfully, but these errors were encountered: