summaryrefslogtreecommitdiff
path: root/text.c
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-11-23 19:19:03 -0500
committerChet Ramey <chet.ramey@case.edu>2011-11-23 19:19:03 -0500
commit518937ab89be812ccd45e9b8c1ce4ad721d35ef6 (patch)
treedea0b2f2ee49c3d169ea6a119010469444877004 /text.c
parent603281bd9a333a5e8850ac78f00d2a964c3213de (diff)
downloadreadline-518937ab89be812ccd45e9b8c1ce4ad721d35ef6.tar.gz
Readline-5.2.014 importbaserock/genivi/baseline
Diffstat (limited to 'text.c')
-rw-r--r--text.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/text.c b/text.c
index 399a48c..cb2f5ad 100644
--- a/text.c
+++ b/text.c
@@ -857,6 +857,9 @@ _rl_insert_next (count)
c = rl_read_key ();
RL_UNSETSTATE(RL_STATE_MOREINPUT);
+ if (c < 0)
+ return -1;
+
#if defined (HANDLE_SIGNALS)
if (RL_ISSTATE (RL_STATE_CALLBACK) == 0)
_rl_restore_tty_signals ();
@@ -1520,6 +1523,9 @@ _rl_char_search (count, fdir, bdir)
mb_len = _rl_read_mbchar (mbchar, MB_LEN_MAX);
+ if (mb_len <= 0)
+ return -1;
+
if (count < 0)
return (_rl_char_search_internal (-count, bdir, mbchar, mb_len));
else
@@ -1536,6 +1542,9 @@ _rl_char_search (count, fdir, bdir)
c = rl_read_key ();
RL_UNSETSTATE(RL_STATE_MOREINPUT);
+ if (c < 0)
+ return -1;
+
if (count < 0)
return (_rl_char_search_internal (-count, bdir, c));
else