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 function engine_status_dump() there is char buffer[256]. If engine status is 0xFFFFFFFF, which means all possible flags, calling engine_status_dump() causes buffer overflow and kernel crash. This is impossible in normal conditions and could only be triggered by another problem. But function engine_status_dump() is a diagnostic function and thus should not lead to crash even if input makes no sense. The problem could be fixed by increasing buffer size.
The text was updated successfully, but these errors were encountered:
In function engine_status_dump() there is char buffer[256]. If engine status is 0xFFFFFFFF, which means all possible flags, calling engine_status_dump() causes buffer overflow and kernel crash. This is impossible in normal conditions and could only be triggered by another problem. But function engine_status_dump() is a diagnostic function and thus should not lead to crash even if input makes no sense. The problem could be fixed by increasing buffer size.
The text was updated successfully, but these errors were encountered: