From 381c3f2d67e1a0d751cba03b81e5d28b2e9b309a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20Pi=C3=B1eiro?= Date: Thu, 24 Sep 2015 17:07:21 +0200 Subject: [PATCH] atktablecell: use content of the pointer instead of pointer itself Fixes https://bugzilla.gnome.org/show_bug.cgi?id=755548 --- atk/atktablecell.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atk/atktablecell.c b/atk/atktablecell.c index 9b1c349..1cec6fa 100644 --- a/atk/atktablecell.c +++ b/atk/atktablecell.c @@ -272,5 +272,6 @@ atk_table_cell_real_get_row_column_span (AtkTableCell *cell, atk_table_cell_get_position (cell, row, column); *row_span = atk_table_cell_get_row_span (cell); *column_span = atk_table_cell_get_column_span (cell); - return (row != 0 && column != 0 && row_span > 0 && column_span > 0); + + return (*row != 0 && *column != 0 && *row_span > 0 && *column_span > 0); } -- 2.7.4