]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix false alarm with recent GCC x86
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Feb 2018 17:15:27 +0000 (09:15 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Feb 2018 17:15:53 +0000 (09:15 -0800)
* 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).

src/lread.c

index d009bd0cd2a52e355260925f9bc92ec254b43115..0ea7677300b4617325608ff091f17fc6e95c8d91 100644 (file)
@@ -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 ();