return EINA_FALSE;
}
- if (row < 0 || column < 0) {
+ if (*row < 0 || *column < 0) {
ERROR("invalid cell position in table");
g_object_unref(table_cell);
return EINA_FALSE;
if (table_row_count && table_column_count && table_caption) {
*table_row_count = atspi_table_get_n_rows(table, NULL);
- if (table_row_count < 0) {
+ if (*table_row_count < 0) {
ERROR("invalid row count in table");
g_object_unref(table_cell);
g_object_unref(table);
*table_column_count = atspi_table_get_n_columns(table, NULL);
- if (table_column_count < 0) {
+ if (*table_column_count < 0) {
ERROR("invalid column count in table");
g_object_unref(table_cell);
g_object_unref(table);