Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 741 of file where.c.
Referenced by WHERE_execute().
{ JOINTABLE *table; JOINTABLE **tables; tables = msi_alloc_zero( (wv->table_count + 1) * sizeof(*tables) ); if (wv->cond) { table = NULL; reorder_check(wv->cond, tables, FALSE, &table); table = NULL; reorder_check(wv->cond, tables, TRUE, &table); } table = wv->tables; while (table) { add_to_array(tables, table); table = table->next; } return tables;