Ticket #636: parrot_segv_OH_visit.patch

File parrot_segv_OH_visit.patch, 0.5 KB (added by skids, 13 years ago)

patch to fix 636

  • src/pmc/orderedhash.pmc

     
    631631                    IMAGE_IO * const io   = info->image_io; 
    632632                    UINTVAL i; 
    633633 
    634                     for (i = 0; i <= hash->entries; i++) { 
     634                    for (i = 0; i < hash->entries; i++) { 
    635635                        HashBucket * const b   = hash->bs + i; 
    636636 
    637637                        if (b) {