summaryrefslogtreecommitdiffstatshomepage
path: root/cgit.c
diff options
context:
space:
mode:
authorJason A. Donenfeld2014-02-20 19:48:24 +0100
committerJason A. Donenfeld2014-02-20 19:48:24 +0100
commit7e1c0ed2aa50ed2290f63912897a3724b224b7ea (patch)
tree26bd4b76373e658f86513b683f9ffe8d6482d4cc /cgit.c
parente8cacb5981039e7e74921659ea50e287395ed411 (diff)
downloadcgit-7e1c0ed2aa50ed2290f63912897a3724b224b7ea.tar
cgit-7e1c0ed2aa50ed2290f63912897a3724b224b7ea.tar.gz
cgit-7e1c0ed2aa50ed2290f63912897a3724b224b7ea.zip
diffstat: do not rely on uninitialized data
Right now if you visit: <http://git.zx2c4.com/systemd/diff/src/udev/udev-builtin-input_id.c?id=bcfce235> you'll see that if you reload the page a few times, a bunch of times the diffstat comes out with no lines being shown or changed. I'm not currently sure what the cause of this is, but I suspect it might have to do with this uninitialized data. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'cgit.c')
0 files changed, 0 insertions, 0 deletions
> 129 130 131 132 133 134 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231