summaryrefslogtreecommitdiff
path: root/textscreen/txt_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'textscreen/txt_table.c')
-rw-r--r--textscreen/txt_table.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/textscreen/txt_table.c b/textscreen/txt_table.c
index d1d0777e..b04ce7cb 100644
--- a/textscreen/txt_table.c
+++ b/textscreen/txt_table.c
@@ -169,6 +169,11 @@ static int SelectableWidget(txt_table_t *table, int x, int y)
txt_widget_t *widget;
int i;
+ if (x < 0 || x >= table->columns)
+ {
+ return 0;
+ }
+
i = y * table->columns + x;
if (i >= 0 && i < table->num_widgets)