Overview
Comment: | Added additional bounds checking to conf_apache (needs more) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b83e2d07b5ed3053a6a23dfcac92fa17 |
User & Date: | rkeene on 2006-12-15 23:33:06 |
Other Links: | manifest | tags |
Context
2006-12-16
| ||
17:06 | Subversion to Fossil Copy Commit. Please Ignore. Recording copying lc_geterrstr.3.in to lc_seterrstr.3.in. check-in: 9f254f7f02 user: rkeene tags: trunk | |
2006-12-15
| ||
23:33 | Added additional bounds checking to conf_apache (needs more) check-in: b83e2d07b5 user: rkeene tags: trunk | |
23:15 | Fixed potential buffer bounds issues check-in: e25a9d7fae user: rkeene tags: trunk | |
Changes
Modified conf_apache.c from [dc1e53e03b] to [963e2cc977].
︙ | |||
135 136 137 138 139 140 141 | 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | - + - + - + | while (*linebuf_ptr < ' ' && linebuf_ptr >= linebuf) { *linebuf_ptr = '\0'; linebuf_ptr--; } /* Remove leading spaces. */ linebuf_ptr = &linebuf[0]; |
︙ |