From fc754b42ec0f0638b2970e6da3d9ad99423a02e7 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Sat, 6 Dec 2014 17:18:49 +0900 Subject: Fix a few harmless uninitialized variables Origin: https://build.opensuse.org/package/view_file/openSUSE:Factory/w3m/w3m-uninitialized.patch?expand=1 --- regex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'regex.c') 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) { -- cgit v1.2.3