Merge pull request #5065

ca86ef1b readline: don't dereference possible NULL pointer (Jethro Grassie)
pull/5062/head
Riccardo Spagni 5 years ago
commit fbecfc3c8f
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -114,7 +114,7 @@ int rdln::readline_buffer::sync()
int end = 0, point = 0;
#endif
if (rl_end || *rl_prompt)
if (rl_end || (rl_prompt && *rl_prompt))
{
#if RL_READLINE_VERSION >= 0x0700
rl_clear_visible_line();
@ -137,7 +137,7 @@ int rdln::readline_buffer::sync()
while ( this->snextc() != EOF );
#if RL_READLINE_VERSION < 0x0700
if (end || *rl_prompt)
if (end || (rl_prompt && *rl_prompt))
{
rl_restore_prompt();
rl_line_buffer = line;

Loading…
Cancel
Save