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
we are using fcgi library witin our web application. due to assert being present within fcgiapp.c, we are seeing the application exiting resulting in Denial of service.
can we remove the assert as this is an library code.
Following code can be reached by user with specific request static void *Malloc(size_t size) 80 { 81 void *result = malloc(size); 82 ASSERT(size == 0 || result != NULL); 83 return result; 84 }
The text was updated successfully, but these errors were encountered:
we are using fcgi library witin our web application. due to assert being present within fcgiapp.c, we are seeing the application exiting resulting in Denial of service.
can we remove the assert as this is an library code.
Following code can be reached by user with specific request
static void *Malloc(size_t size) 80 { 81 void *result = malloc(size); 82 ASSERT(size == 0 || result != NULL); 83 return result; 84 }
The text was updated successfully, but these errors were encountered: