1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-12-23 12:03:41 +01:00

Reset 'used' to zero after expanding frame cache hash table.

This commit is contained in:
Lassi Tuura 2011-03-25 00:02:37 -07:00 committed by Arun Sharma
parent 741a5a2149
commit f1ea02be58

View file

@ -157,6 +157,7 @@ trace_cache_expand (unw_trace_cache_t *cache)
Debug(5, "expanded cache from 2^%lu to 2^%lu hash bucket sets\n",
cache->log_frame_vecs, new_size);
cache->log_frame_vecs = new_size;
cache->used = 0;
return 0;
}