From: Alejandro PiƱeiro Date: Thu, 24 Sep 2015 15:07:21 +0000 (+0200) Subject: atktablecell: use content of the pointer instead of pointer itself X-Git-Tag: ATK_2_19_90~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=381c3f2d67e1a0d751cba03b81e5d28b2e9b309a;p=platform%2Fupstream%2Fatk.git atktablecell: use content of the pointer instead of pointer itself Fixes https://bugzilla.gnome.org/show_bug.cgi?id=755548 --- 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); }