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 buffer may contain a zero byte; which may even be at the beginning. This causes strlen to return 0, and thus (size_t) 0 - 1 will result in SIZE_MAX and thus cause an out of buffer access
wsapi/src/fastcgi/lfcgi.c
Lines 365 to 366 in 8bbfe70
The buffer may contain a zero byte; which may even be at the beginning. This causes
strlen
to return0
, and thus(size_t) 0 - 1
will result inSIZE_MAX
and thus cause an out of buffer accessSee https://wiki.sei.cmu.edu/confluence/pages/viewpage.action?pageId=87152422
The text was updated successfully, but these errors were encountered: