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:
<https://sourceware.org/ml/gdb-testers/2015-q2/msg00450.html>
+2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com>
+
+ * linux-tdep.c (decode_vmflags): Initialize 'saveptr'.
+
2015-04-07 Pedro Alves <palves@redhat.com>
* gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ...
static void
decode_vmflags (char *p, struct smaps_vmflags *v)
{
- char *saveptr;
+ char *saveptr = NULL;
const char *s;
v->initialized_p = 1;