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
Fix size_t overflow in Malloc() argument in ReadParams()
There were still two issues after commit
b0eabca (Update fcgiapp.c, Fixing an
integer overflow (CVE-2025-23016)):
* Signed int overflow in "nameLen + valueLen + 2" expression.
* Sizes of size_t and int types are in general unrelated.
This fix resolves both of the issues.
Related to CVE-2025-23016.
Resolve#67.
0 commit comments