Changeset 18044 for gsdl


Ignore:
Timestamp:
2008-12-03T17:29:20+13:00 (15 years ago)
Author:
mdewsnip
Message:

Fixed bug in customised code where not all of the hash table buckets had their key values unswapped.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/common-src/packages/gdbm/gdbm-1.8.3/bucket.c

    r18039 r18044  
    126126    //   strings are not affected by endianness), so convert these back to how they were originally
    127127    int b;
    128     for (b = 0; b < dbf->bucket->count; b++)
     128    for (b = 0; b < dbf->header->bucket_elems; b++)
    129129    {
    130130      int* key_start = (int*) dbf->bucket->h_table[b].key_start;
Note: See TracChangeset for help on using the changeset viewer.