Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 234460 | Differences between
and this patch

Collapse All | Expand All

(-)src-native-new/src/shared/TPTPUtil/hashtable.c (-1 / +1 lines)
Lines 450-456 Link Here
450
450
451
	memset(hasht->table,'\0',hasht->table_len * sizeof(Entry*));
451
	memset(hasht->table,'\0',hasht->table_len * sizeof(Entry*));
452
452
453
	for (i = oldCapacity-1; i-- > 0;) {
453
	for (i = oldCapacity; i-- > 0;) {
454
		for (old = oldMap[i]; old != NULL; ) {
454
		for (old = oldMap[i]; old != NULL; ) {
455
			ent = old;
455
			ent = old;
456
			old = (Entry*)old->next;
456
			old = (Entry*)old->next;

Return to bug 234460