aboutsummaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2014-12-06 08:19:46 +0000
committerTatsuya Kinoshita <tats@debian.org>2014-12-06 08:19:46 +0000
commit0552b86da68c8cfba25641ffe76221a7774cf7b3 (patch)
treeb721962ead37bf45d63f311301becec2e115e7e1 /regex.c
parentMerge branch 'bug/textarea-segfault' (diff)
parentFix a few harmless uninitialized variables (diff)
downloadw3m-0552b86da68c8cfba25641ffe76221a7774cf7b3.tar.gz
w3m-0552b86da68c8cfba25641ffe76221a7774cf7b3.zip
Merge branch 'bug/uninitialized'
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regex.c b/regex.c
index 5bee4b2..5675d09 100644
--- a/regex.c
+++ b/regex.c
@@ -77,7 +77,7 @@ static longchar
set_longchar(char *str)
{
unsigned char *p = (unsigned char *)str;
- longchar r;
+ longchar r = { };
#ifdef USE_M17N
if (*p & 0x80) {