Commit 617cbacd authored by vasil's avatar vasil

branches/zip: Use hash_table_clear() to initialize the array instead of

for()-loop.

Suggested by:	Sunny
Approved by:	Marko
parent 7bd89c50
......@@ -103,12 +103,7 @@ hash_create(
table->magic_n = HASH_TABLE_MAGIC_N;
/* Initialize the cell array */
for (i = 0; i < prime; i++) {
cell = hash_get_nth_cell(table, i);
cell->node = NULL;
}
hash_table_clear(table);
return(table);
}
......
......@@ -180,7 +180,7 @@ hash_get_nth_cell(
ulint n); /* in: cell index */
/*****************************************************************
Clears a hash table so that all the cells become empty again. */
Clears a hash table so that all the cells become empty. */
UNIV_INLINE
void
hash_table_clear(
......
......@@ -24,7 +24,7 @@ hash_get_nth_cell(
}
/*****************************************************************
Clears a hash table so that all the cells become empty again. */
Clears a hash table so that all the cells become empty. */
UNIV_INLINE
void
hash_table_clear(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment