| CODENOTIFIER | HelpYou are not signed inSign in |
Project: lighttpd
Revision: 2276
Author: stbuehler
Date: 01 Aug 2008 15:29:41
Changes:Fix dropping last character of evhost pattern (#161)
Files:| ... | ...@@ -99,7 +99,7 @@ | |
| 99 | 99 | s->path_pieces = realloc(s->path_pieces,(s->len+1) * sizeof(*s->path_pieces)); |
| 100 | 100 | s->path_pieces[s->len] = buffer_init(); |
| 101 | 101 | |
| 102 | buffer_append_memory(s->path_pieces[s->len],pos,ptr-pos); | |
| 102 | buffer_copy_string_len(s->path_pieces[s->len],pos,ptr-pos); | |
| 103 | 103 | |
| 104 | 104 | s->len += 1; |
| 105 | 105 | } |
| ... | ...@@ -53,6 +53,7 @@ | |
| 53 | 53 | * fixed mod_webdav, litmus now passes everything except locks (#1738) |
| 54 | 54 | * fixed #1555: HTTP Request/Response only accept complete headers, i.e. ended with double CRLF |
| 55 | 55 | * fixed url encoding to encode more characters (#266) |
| 56 | * fixed dropping last character of evhost pattern (#161) | |
| 56 | 57 | |
| 57 | 58 | - 1.5.0-r19.. - |
| 58 | 59 | * -F option added for spawn-fcgi |