diff options
| author | David Crosby <dave@dafyddcrosby.com> | 2015-07-22 04:00:42 +0000 |
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2015-08-11 12:59:27 +0000 |
| commit | 6fe9e524afa7bc4e13d31708a628d16b6d263c6b (patch) | |
| tree | d61969bf7b2e6eae86db9104a889c9939b19a615 | |
| parent | Remove overflow on readlink (diff) | |
| download | w3m-6fe9e524afa7bc4e13d31708a628d16b6d263c6b.tar.gz w3m-6fe9e524afa7bc4e13d31708a628d16b6d263c6b.zip | |
Initialize new_tabwidth at declaration
| -rw-r--r-- | table.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1690,7 +1690,7 @@ renderTable(struct table *t, int max_width, struct html_feed_environ *h_env) { int i, j, w, r, h; Str renderbuf; - short new_tabwidth[MAXCOL]; + short new_tabwidth[MAXCOL] = { 0 }; #ifdef MATRIX int itr; VEC *newwidth; |
