Gee..wonder how many more commits I can get before 14:00...

Fixed a segfault bug in E-Exec.


SVN revision: 1274
This commit is contained in:
Richard Barnes 1999-11-12 18:33:56 +00:00
parent 1401f9bd62
commit 294986b62e
2 changed files with 11 additions and 0 deletions

View File

@ -481,3 +481,11 @@ Added a feature to allow you to scroll off the end of the command history and
back into a blank textbox. Was supposed to already be in, but for some reason
it didn't work.
-------------------------------------------------------------------------------
Fri Nov 12 13:55:48 EST 1999
(StriderZ)
Gee..wonder how many more commits I can get before 14:00...
Fixed a segfault bug in E-Exec.

View File

@ -29,6 +29,9 @@ run_contents(void *data)
char *command = Epplet_textbox_contents(textbox);
int i;
if(command == NULL)
return;
if(num_commands < MAX_HIST_LEN)
command_history[num_commands++] = strdup(command);
else