issues
search
CrowdStrike
/
rusty-falcon
Rust bindings for CrowdStrike Falcon API
MIT License
14
stars
10
forks
source link
fix: avoid possible truncation by using `i64` for pagination offset
#132
Closed
mikemadden42
closed
2 months ago
mikemadden42
commented
2 months ago
Changed the type of
offset
from
i32
to
i64
to prevent potential data loss when casting from
i64
to
i32
.
This change ensures that the pagination offset can handle large values without risk of truncation.
Updated the relevant code sections to accommodate this change.
offset
fromi32
toi64
to prevent potential data loss when casting fromi64
toi32
.