aboutsummaryrefslogtreecommitdiffstats
path: root/anchor.c
diff options
context:
space:
mode:
authorOlaf Hering <olh@suse.de>2014-12-06 08:18:49 +0000
committerTatsuya Kinoshita <tats@debian.org>2014-12-06 08:18:49 +0000
commitfc754b42ec0f0638b2970e6da3d9ad99423a02e7 (patch)
treeb721962ead37bf45d63f311301becec2e115e7e1 /anchor.c
parentMerge branch 'bug/textarea-segfault' (diff)
downloadw3m-fc754b42ec0f0638b2970e6da3d9ad99423a02e7.tar.gz
w3m-fc754b42ec0f0638b2970e6da3d9ad99423a02e7.zip
Fix a few harmless uninitialized variables
Origin: https://build.opensuse.org/package/view_file/openSUSE:Factory/w3m/w3m-uninitialized.patch?expand=1
Diffstat (limited to 'anchor.c')
-rw-r--r--anchor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/anchor.c b/anchor.c
index 39f221d..a353bb9 100644
--- a/anchor.c
+++ b/anchor.c
@@ -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;