diff options
author | David Crosby <dave@dafyddcrosby.com> | 2015-07-15 14:55:08 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2015-08-11 12:59:27 +0000 |
commit | 7e5b33c30ece6f265593cc442ff5a8579faef8ad (patch) | |
tree | 4389d759cd838f9b71528b9848510831774e7674 /anchor.c | |
parent | Move fclose to fix dereference after null check (Coverity) (diff) | |
download | w3m-7e5b33c30ece6f265593cc442ff5a8579faef8ad.tar.gz w3m-7e5b33c30ece6f265593cc442ff5a8579faef8ad.zip |
Remove dead assignments flagged by Clang static analysis
Diffstat (limited to 'anchor.c')
-rw-r--r-- | anchor.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -643,7 +643,6 @@ addMultirowsForm(Buffer *buf, AnchorList *al) { int i, j, k, col, ecol, pos; Anchor a_form, *a; - FormItemList *fi; Line *l, *ls; if (al == NULL || al->nanchor == 0) @@ -670,7 +669,6 @@ addMultirowsForm(Buffer *buf, AnchorList *al) if (!ls) continue; } - fi = (FormItemList *)a_form.url; col = COLPOS(ls, a_form.start.pos); ecol = COLPOS(ls, a_form.end.pos); for (j = 0; l && j < a_form.rows; l = l->next, j++) { |