libfcgi
libfcgi copied to clipboard
libfcgi patched by Yandex
Здравствуйте! Что изменилось в проекте после доработки Яндексом? Спасибо.
I run `./configure' and everything is okay. but during make, it show up errors and warnings. system: Ubuntu 12.04 64bit gcc: 4.8.4 ``` [three@ubuntu(2): libfcgi-master]$ make make all-recursive make[1]: Entering...
Using the fcgiapp, OS_LibShutdown is never called, causing unfreed memory. As OS_LibInit is called in FCGX_Accept(), I guess OS_LibShutdown should be called in FCGX_Finish().
Hello, (i am assigned to check every single component of our project.) using: cppcheck -q --force --enable=warning --inconclusive -v . cppcheck is reporting: [fastcgi-2.4/cgi-fcgi/cgi-fcgi.c:628]: (error) Resource leak: fp Issue: Returning...
`ASSERT(size == 0 || result != NULL);` Won't this assertion fail when you try to allocate anything more than 0 bytes? Shouldn't it be ASSERT(size != 0 || result !=...
there's no `FCGX_Open*` in https://github.com/toshic/libfcgi/blob/master/examples/threaded.c , seems something is missing?