Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assert causing application exit #58

Open
farooqza opened this issue Jul 28, 2022 · 0 comments
Open

Assert causing application exit #58

farooqza opened this issue Jul 28, 2022 · 0 comments

Comments

@farooqza
Copy link

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 }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant