Changeset 2138
- Timestamp:
- 03/26/2008 02:23:05 PM (5 months ago)
- Location:
- branches/lighttpd-1.4.x
- Files:
-
- 2 modified
-
NEWS (modified) (1 diff)
-
src/configfile-glue.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.4.x/NEWS
r2137 r2138 11 11 * Fix #285 again: read error after SSL_shutdown (thx marton.illes@balabit.com) and clear the error queue before some other calls 12 12 * Fix mod_magnet: enable "request.method" and "request.protocol" in lighty.env (#1308) 13 * Fix segfault for appending matched parts if there was no regex matching (just give empty strings) (#1601) 13 14 14 15 - 1.4.19 - 2008-03-10 -
branches/lighttpd-1.4.x/src/configfile-glue.c
r2112 r2138 530 530 { 531 531 cond_cache_t *cache = &con->cond_cache[dc->context_ndx]; 532 if (n > cache->patterncount) {532 if (n >= cache->patterncount) { 533 533 return 0; 534 534 }

