mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-26 23:31:55 -08:00
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).
This commit is contained in:
parent
9ce10e893d
commit
240df54e24
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue