diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-11-24 23:55:28 +0100 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2012-11-25 18:30:10 +0100 |
commit | edf3903ac840b1889b9bdd687965453a7e26b7ee (patch) | |
tree | 38dbf17bcdfceae52227afdf497fa8a69d654fa3 | |
parent | 660eef88e4a0add913e8a147d97b9549162a921e (diff) | |
download | calcurse-edf3903ac840b1889b9bdd687965453a7e26b7ee.zip |
Avoid core dump if window is too small
Avoid setting the maximum number of items to a negative number (which
eventually results in a core dump).
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
-rw-r--r-- | src/todo.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -282,6 +282,9 @@ void todo_update_panel(int which_pan) int max_items = win[TOD].h - 4; int incolor = -1; + if ((int)win[TOD].h < 4) + return; + /* Print todo item in the panel. */ erase_window_part(win[TOD].p, 1, title_lines, win[TOD].w - 2, win[TOD].h - 2); LLIST_FOREACH(&todolist, i) { |