Actions
Bug #1947
closedwrong data type in mod_access.c
ASK QUESTIONS IN Forums:
Description
mod_access.c, line 76
see
http://redmine.lighttpd.net/projects/lighttpd/repository/entry/trunk/src/mod_access.c
p->config_storage = calloc(1, srv->config_context->used * sizeof(specific_config *));
should be
p->config_storage = calloc(1, srv->config_context->used * sizeof(plugin_config *));
Updated by stbuehler over 15 years ago
- Subject changed from wrong data type in mod_access.c 1.5.0 to wrong data type in mod_access.c
- Priority changed from Urgent to Normal
- Target version set to 1.5.0
pointer is pointer... so it doesn't matter really.
Updated by icy over 15 years ago
Hehe there's a similar ticket open. It does no harm but it should be fixed nonetheless. And be it for readability :)
Updated by stbuehler over 15 years ago
- Status changed from New to Fixed
- % Done changed from 0 to 100
Applied in changeset r2442.
Actions
Also available in: Atom