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 /rc.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 '')
-rw-r--r-- | rc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -779,7 +779,7 @@ create_option_search_table() qsort(RC_search_table, RC_table_size, sizeof(struct rc_search_table), (int (*)(const void *, const void *))compare_table); - diff1 = diff2 = 0; + diff2 = 0; for (i = 0; i < RC_table_size - 1; i++) { p = RC_search_table[i].param->name; q = RC_search_table[i + 1].param->name; |