Changeset fe04594 in mainline


Ignore:
Timestamp:
2006-04-05T17:49:32Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
203f4c3
Parents:
a9ef68b
Message:

Fix critical bug in hash table initialization.
Only half of the table was actually allocated and initialized.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/adt/hash_table.c

    ra9ef68b rfe04594  
    5454        ASSERT(max_keys > 0);
    5555       
    56         h->entry = malloc(m * sizeof(link_t *), 0);
     56        h->entry = malloc(m * sizeof(link_t), 0);
    5757        if (!h->entry) {
    5858                panic("cannot allocate memory for hash table\n");
    5959        }
    60         memsetb((__address) h->entry, m * sizeof(link_t *), 0);
     60        memsetb((__address) h->entry, m * sizeof(link_t), 0);
    6161       
    6262        for (i = 0; i < m; i++)
Note: See TracChangeset for help on using the changeset viewer.