1
1

* user.c (execute_menu_command: Fix rare segmentation violation

if last line in menu file contain space(s) only and no trailing
newline.
Этот коммит содержится в:
Pavel Roskin 2003-09-09 04:52:15 +00:00
родитель 25e8950d39
Коммит 35931b119e
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,9 @@
2003-09-09 Andrew V. Samoilov <sav@bcs.zp.ua>
* user.c (execute_menu_command: Fix rare segmentation violation
if last line in menu file contain space(s) only and no trailing
newline.
2003-09-07 Pavel Roskin <proski@gnu.org>
* listmode.c: Use groupboxes.

Просмотреть файл

@ -578,6 +578,8 @@ execute_menu_command (WEdit *edit_widget, const char *commands)
break;
while (*commands == ' ' || *commands == '\t')
commands++;
if (*commands == 0)
break;
}
col++;
if (*commands == '\n')