diff options
author | Lukas Fleischer | 2011-07-21 23:04:53 +0200 |
---|---|---|
committer | Lars Hjemli | 2011-07-22 12:21:11 +0000 |
commit | 1e25ac5b8fe0ca8760b2786b20d36013a6197e02 (patch) | |
tree | f1845a19e26855b3983889c2d8ee29cdff6fe9e7 /parsing.c | |
parent | 654ebb55d4e436ad145061ffb87111cbfcd88565 (diff) | |
download | cgit-1e25ac5b8fe0ca8760b2786b20d36013a6197e02.tar.gz cgit-1e25ac5b8fe0ca8760b2786b20d36013a6197e02.tar.bz2 cgit-1e25ac5b8fe0ca8760b2786b20d36013a6197e02.zip |
Remove dead initialization in cgit_parse_commit()
The value stored to "t" during its initialization gets overwritten in
any case, so just leave it uninitialized. Spotted by clang-analyzer.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'parsing.c')
-rw-r--r-- | parsing.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ const char *reencode(char **txt, const char *src_enc, const char *dst_enc) | |||
125 | struct commitinfo *cgit_parse_commit(struct commit *commit) | 125 | struct commitinfo *cgit_parse_commit(struct commit *commit) |
126 | { | 126 | { |
127 | struct commitinfo *ret; | 127 | struct commitinfo *ret; |
128 | char *p = commit->buffer, *t = commit->buffer; | 128 | char *p = commit->buffer, *t; |
129 | 129 | ||
130 | ret = xmalloc(sizeof(*ret)); | 130 | ret = xmalloc(sizeof(*ret)); |
131 | ret->commit = commit; | 131 | ret->commit = commit; |