[PATCH] Remove dead initialization in cgit_parse_commit()
Lukas Fleischer
cgit at cryptocrack.de
Thu Jul 21 23:04:53 CEST 2011
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 at cryptocrack.de>
---
parsing.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/parsing.c b/parsing.c
index 151c0fe..602e3de 100644
--- a/parsing.c
+++ b/parsing.c
@@ -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;
--
1.7.6
More information about the CGit
mailing list