On Friday 14 September 2007 10:32:38 [EMAIL PROTECTED] wrote: > Modified: trunk/src/pmc/orderedhash.pmc > =========================================================================== >=== --- trunk/src/pmc/orderedhash.pmc (original) > +++ trunk/src/pmc/orderedhash.pmc Fri Sep 14 10:32:37 2007 > @@ -604,7 +604,7 @@ > case VISIT_FREEZE_AT_DESTRUCT: > for (i = 0; i <= hash->entries; i++) { > HashBucket *b = hash->bs + i; > - STRING *key; > + STRING *key = NULL; > > if (b) > key = (STRING *)b->key;
My fault. I don't think b can ever be NULL here, so the initialization could get hoisted back up to the declaration if we want. -- c