From: Paul Eggert Date: Tue, 20 Feb 2018 17:15:27 +0000 (-0800) Subject: Fix false alarm with recent GCC x86 X-Git-Tag: emacs-27.0.90~5656 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=240df54e24785cc23d365699bcdbb5cd6fd0bb9f;p=emacs.git Fix false alarm with recent GCC x86 * src/lread.c (Fload): Use UNINIT to pacify -Wmaybe-uninitialized false alarm on Fedora 27 x86 with GCC 7.3.1 20180130 (Red Hat 7.3.1-2). --- diff --git a/src/lread.c b/src/lread.c index d009bd0cd2a..0ea7677300b 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1123,7 +1123,7 @@ Return t if the file exists and loads successfully. */) (Lisp_Object file, Lisp_Object noerror, Lisp_Object nomessage, Lisp_Object nosuffix, Lisp_Object must_suffix) { - FILE *stream; + FILE *stream UNINIT; int fd; int fd_index UNINIT; ptrdiff_t count = SPECPDL_INDEX ();