Activity
From 2008-10-25 to 2008-10-31
2008-10-31
- 21:48 Bug #1402: multiple by 8 / 10 instead of 0.8 to prevent the need for floating support
- There's nothing wrong with the patch that I can see. stbuehler is correct that rewriting math with shifts is usually...
- 21:38 Bug #1363 (Reopened): Memory leak in stat_cache.c on a 64bit server
- I'm pretty sure this one isn't fixed. When glib isn't installed, it hits the "still have to store the sce somewhere"...
- 21:23 Bug #1813 (Fixed): bad errno check in network_freebsd_sendfile.c
- sendfile() doesn't document errno on success, so don't examine it when an error wasn't returned.
The only way the ... - 02:39 Bug #1812 (Fixed): lighttpd delays unnecessarily before exiting
- lighttpd spends unnecessary time waiting when ^C is pressed, even after connections are done closing down.
When sr... - 01:52 Bug #1811 (Fixed): fix shutdown leaks
- Fix aio_write_threads isn't always freed; handle this without listing every network backend that uses it to avoid reg...
- 01:51 Bug #1810 (Obsolete): aio connection lifetime issues (race condition)
- The AIO threads don't seem to pay attention to the lifetime of the connection object.
For example, using network_g... - 00:12 Bug #1809 (Fixed): ssl_cipher_list never freed
- specific_config->ssl_cipher_list is not freed on exit. (In a trivial setup, this eliminates the last Valgrind "defin...
2008-10-30
- 23:40 Bug #1808: wakeup_iosocket is never freed
- (Sorry about the noise in the patch.)
- 23:40 Bug #1808 (Fixed): wakeup_iosocket is never freed
- From bug #1517, wakeup_iosocket is never freed on exit. Trivial leak, but it adds to valgrind noise.
- 15:48 Bug #1807 (Fixed): Long fcgi sessions is closed due to server.max-keep-alive-idle
- IMHO there is a problem in lighttpd in that there is no CON_STATE_HANDLE_REQUEST_CONTENT state meaning that when for ...
- 00:32 Bug #1806 (Fixed): print the parsed config-file in internal form does not quote doublequote
- say i have in config:...
2008-10-29
- 21:29 Bug #1805: OpenSSL crash after reuse of contexts
- The patch is a workaround for correctly handling the double-shutdown. It might break clients that don't expect the si...
- 16:56 Bug #1805 (Invalid): OpenSSL crash after reuse of contexts
- The partial shutdown on the non-blocking socket can result in NULL pointer references inside OpenSSL later. The attac...
- 13:10 Feature #296: Can't use cronolog with server.errorlog
- Bump! Any news?
2008-10-27
- 22:39 Bug #1320: check return value of calloc in mod_simple_vhost.c
- Safari wrote:
> I use supervise to, well, supervise lighttpd process:
> Now, if there was no sleep of any kind, and... - 18:31 Bug #1320: check return value of calloc in mod_simple_vhost.c
- icy wrote:
> A restart does not take 1-2 seconds. Where did you get those numbers from? It usually should take maybe... - 18:04 Bug #1320: check return value of calloc in mod_simple_vhost.c
- Safari wrote:
> 1) doing null pointer dereference on purpose is not smart.
> http://www.google.fi/search?q="null+po... - 17:39 Bug #1320: check return value of calloc in mod_simple_vhost.c
- Safari wrote:
> In your first example wrap you did nothing if NULL was returned by malloc.
It was just a example ... - 17:20 Bug #1320: check return value of calloc in mod_simple_vhost.c
- In your first example wrap you did nothing if NULL was returned by malloc.
1) doing null pointer dereference on pu... - 16:42 Bug #1320: check return value of calloc in mod_simple_vhost.c
- Safari wrote:
> How were you going to fix the bug (null pointer dereference) with this wrap thingie?
>
The wrap... - 16:25 Bug #1320: check return value of calloc in mod_simple_vhost.c
- If malloc returns NULL, it means that even the swap space has run out. In such situations, there isn't much you can d...
- 15:44 Bug #1320: check return value of calloc in mod_simple_vhost.c
- How were you going to fix the bug (null pointer dereference) with this wrap thingie?
Out of memory -conditions can... - 19:52 Bug #1551: mod_accesslog does not escape quotes
- Like I mentioned in the bugreport, the bug not only applies to header values (referer) but also to the path.
General... - 19:42 Bug #1551: mod_accesslog does not escape quotes
- what about this?:
src/mod_accesslog.c... - 18:20 Bug #1402: multiple by 8 / 10 instead of 0.8 to prevent the need for floating support
- Whats wrong with the patch from leonw?
- 18:09 Bug #1755: specifying config-file twice crashes lighttpd
- Anonymous wrote:
> I accidentally wrote a script which runs the command
> _lighttpd -f lighttpd.conf -f lighttpd.co...
2008-10-26
- 23:35 Bug #1320: check return value of calloc in mod_simple_vhost.c
- Safari wrote:
> check return value of calloc in mod_simple_vhost.c
What about wrapping all the malloc functions?
... - 22:46 Bug #1717: Google's urlfetch from appEngine and lighttpd HTTP 400 response
- stbuehler wrote:
> The framework sends a "Content-Length: 0" header in a GET request:
>
> rfc 2616, 4.3:
>
> [... - 20:30 Bug #1363 (Fixed): Memory leak in stat_cache.c on a 64bit server
- Applied in changeset r2356.
- 20:30 Bug #1693 (Fixed): Memory Leak in stat_cache.c Found
- Applied in changeset r2356.
- 20:28 Revision 2356 (svn): Fix memory leak in stat-cache (closes #1693), patch by peto
- 18:05 Feature #1632 (Fixed): mod_uploadprogress enhancement
- Applied in changeset r2355.
- 18:04 Revision 2355 (svn): Enhance mod_uploadprogress to show uploaded size after upload is done (closes #1632) by icy
- 17:41 Bug #1770 (Missing Feedback): memory leak : mod_proxy_backend_fastcgi
- 17:41 Bug #1796 (Missing Feedback): Be more fair on fastcgi children request handling of mod_fastcgi
- 17:18 Feature #219 (Wontfix): New option: include_glob
- As mentioned, it is already possible to include files with wildcards using include_shell
- 17:10 Bug #1511 (Fixed): mod_uploadprogress broken by mod_proxy_core
- I don't know in what changeset this was fixed, it's too old to bother looking it up.
Closed because working in recen... - 17:06 Bug #1511: mod_uploadprogress broken by mod_proxy_core
- mod_uploadprogress is successfully reporting the upload progress for me as of r2353. This might be resolved.
- 09:34 Bug #1402: multiple by 8 / 10 instead of 0.8 to prevent the need for floating support
- LX wrote:
> Instead of "* 8 / 10", it would be faster to use "<< 3 / 10" and still work on embedded systems.
>
> ... - 09:06 Bug #1402: multiple by 8 / 10 instead of 0.8 to prevent the need for floating support
- Anonymous wrote:
> in server.c, please replace "0.8" by "8 / 10".
>
> This allows using lighttpd to run without f...
2008-10-25
- 11:57 Bug #1804 (Invalid): spawn-fcgi doesn't respect -F PHP_FCGI_CHILDREN
- You are using the wrong option. To spawn PHPs internal children (special case for PHP), you need to use -C.
-F works ... - 11:23 Bug #1804 (Wontfix): spawn-fcgi doesn't respect -F PHP_FCGI_CHILDREN
- it will only ignore numbers smaller than 5. if you use bigger numbers it will work.
- 06:53 Bug #1804 (Invalid): spawn-fcgi doesn't respect -F PHP_FCGI_CHILDREN
- I'm running lighttpd 1.5 r2353
If I run the command:
/usr/local/bin/spawn-fcgi -f /usr/local/bin/php-cgi -s /tmp/... - 06:38 Revision 2354 (svn): add WITH_OPENSSL in example
Also available in: Atom