Hans Leidekker (@hans) commented about dlls/msi/where.c:
JOINTABLE *table; JOINTABLE **tables;
- tables = msi_alloc_zero( (wv->table_count + 1) * sizeof(*tables) );
- tables = calloc((wv->table_count + 1), sizeof(*tables));
You can remove the parentheses.