diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2014-12-06 08:19:46 +0000 |
---|---|---|
committer | Tatsuya Kinoshita <tats@debian.org> | 2014-12-06 08:19:46 +0000 |
commit | 0552b86da68c8cfba25641ffe76221a7774cf7b3 (patch) | |
tree | b721962ead37bf45d63f311301becec2e115e7e1 /anchor.c | |
parent | Merge branch 'bug/textarea-segfault' (diff) | |
parent | Fix a few harmless uninitialized variables (diff) | |
download | w3m-0552b86da68c8cfba25641ffe76221a7774cf7b3.tar.gz w3m-0552b86da68c8cfba25641ffe76221a7774cf7b3.zip |
Merge branch 'bug/uninitialized'
Diffstat (limited to 'anchor.c')
-rw-r--r-- | anchor.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ putAnchor(AnchorList *al, char *url, char *target, Anchor **anchor_return, { int n, i, j; Anchor *a; - BufferPoint bp; + BufferPoint bp = { 0 }; if (al == NULL) { al = New(AnchorList); al->anchors = NULL; |