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 current implementation of EncodeInt and DecodeInt may not correctly handle the minimum 64-bit integer value due to potential overflow in two's complement arithmetic. We need to add a specific test case for this value and ensure correct behavior.
Tasks:
Requirements
Add a test case for INT64_MIN in int_test.go
Verify correct encoding and decoding of INT64_MIN
If issues are found, implement a fix in EncodeInt and/or DecodeInt functions
The text was updated successfully, but these errors were encountered:
The current implementation of EncodeInt and DecodeInt may not correctly handle the minimum 64-bit integer value due to potential overflow in two's complement arithmetic. We need to add a specific test case for this value and ensure correct behavior.
Tasks:
Requirements
The text was updated successfully, but these errors were encountered: