Project

General

Profile

Actions

Bug #1947

closed

wrong data type in mod_access.c

Added by ycheng about 15 years ago. Updated about 15 years ago.

Status:
Fixed
Priority:
Normal
Category:
mod_access
Target version:
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 *));

Actions #1

Updated by stbuehler about 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.

Actions #2

Updated by icy about 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 :)

Actions #3

Updated by stbuehler about 15 years ago

  • Status changed from New to Fixed
  • % Done changed from 0 to 100

Applied in changeset r2442.

Actions

Also available in: Atom