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
Fixes 13 compilation warnings including 1 critical bug:
Critical fix:
- Line 6509: Changed metadataInIdx from size_t to int to fix logic bug
where -1 wrapped to SIZE_MAX, causing error check to always fail
Sign comparison fixes:
- Line 6282: Added size_t casts for assert comparison
- Lines 6810, 6814: Cast sizeof results to int
- Line 7189: Cast sizeof result to i64
- Line 7445: Cast strlen result to int in assert
Uninitialized variable fixes:
- Line 7283: Initialize result to 0.0f
- Lines 8439-8440: Initialize n and offset to 0, add default case
Build now produces zero warnings. All tests pass.
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments