diff options
author | Lukas Fleischer <cgit@cryptocrack.de> | 2011-07-21 23:04:53 +0200 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2011-07-22 12:21:11 +0000 |
commit | 1e25ac5b8fe0ca8760b2786b20d36013a6197e02 (patch) | |
tree | f1845a19e26855b3983889c2d8ee29cdff6fe9e7 /parsing.c | |
parent | 654ebb55d4e436ad145061ffb87111cbfcd88565 (diff) |
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) struct commitinfo *cgit_parse_commit(struct commit *commit) { struct commitinfo *ret; - char *p = commit->buffer, *t = commit->buffer; + char *p = commit->buffer, *t; ret = xmalloc(sizeof(*ret)); ret->commit = commit; |