You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
340 B
11 lines
340 B
--- a/lib/readline/history.c 2014-05-27 16:55:58.040214069 +0200 |
|
+++ b/lib/readline/history.c 2014-05-27 16:56:11.243204928 +0200 |
|
@@ -318,7 +318,7 @@ add_history_time (string) |
|
{ |
|
HIST_ENTRY *hs; |
|
|
|
- if (string == 0) |
|
+ if (string == 0 || history_length < 1) |
|
return; |
|
hs = the_history[history_length - 1]; |
|
FREE (hs->timestamp);
|
|
|