projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ce10e8
)
Fix false alarm with recent GCC x86
author
Paul Eggert
<eggert@cs.ucla.edu>
Tue, 20 Feb 2018 17:15:27 +0000
(09:15 -0800)
committer
Paul 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
patch
|
blob
|
history
diff --git
a/src/lread.c
b/src/lread.c
index d009bd0cd2a52e355260925f9bc92ec254b43115..0ea7677300b4617325608ff091f17fc6e95c8d91 100644
(file)
--- 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 ();