From d249a14abe5c2ee3ba4dc6c47e68e41ddc2025a4 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Tue, 7 Apr 2015 15:19:07 -0400 Subject: Initialize variable on gdb/linux-tdep.c:decode_vmflags This obvious commit initializes the 'saveptr' variable on gdb/linux-tdep.c:decode_vmflags. This was causing a build failure on Fedora 21 x86_64, caught by the BuildBot here: --- gdb/linux-tdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/linux-tdep.c') diff --git a/gdb/linux-tdep.c b/gdb/linux-tdep.c index 4af1d01..0b11e58 100644 --- a/gdb/linux-tdep.c +++ b/gdb/linux-tdep.c @@ -445,7 +445,7 @@ read_mapping (const char *line, static void decode_vmflags (char *p, struct smaps_vmflags *v) { - char *saveptr; + char *saveptr = NULL; const char *s; v->initialized_p = 1; -- cgit v1.1