mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:57:03 +08:00
* readline.c (rl_read_init_file): Make sure that null filename is
not passed to open() or else we end up opening the directory, and read a bunch of garbage into keymap[].
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
Thu Feb 20 23:23:16 1992 Stu Grossman (grossman at cygnus.com)
|
||||
|
||||
* readline.c (rl_read_init_file): Make sure that null filename is
|
||||
not passed to open() or else we end up opening the directory, and
|
||||
read a bunch of garbage into keymap[].
|
||||
|
||||
Mon Feb 17 17:15:09 1992 Fred Fish (fnf at cygnus.com)
|
||||
|
||||
* readline.c (readline_default_bindings): Only make use of VLNEXT
|
||||
|
@ -5484,6 +5484,9 @@ rl_read_init_file (filename)
|
||||
|
||||
openname = tilde_expand (filename);
|
||||
|
||||
if (!openname || *openname == '\000')
|
||||
return ENOENT;
|
||||
|
||||
if ((stat (openname, &finfo) < 0) ||
|
||||
(file = open (openname, O_RDONLY, 0666)) < 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user