mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
st.c: fix num_entries
* st.c (st_insert2): should manage num_entries when the key is undefined, as well as st_insert(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4a09333b35
commit
813ffb8b53
1 changed files with 2 additions and 0 deletions
2
st.c
2
st.c
|
@ -1197,6 +1197,8 @@ st_insert2(st_table *tab, st_data_t key, st_data_t value,
|
|||
if (tab->bins == NULL) {
|
||||
bin = find_entry(tab, hash_value, key);
|
||||
new_p = bin == UNDEFINED_ENTRY_IND;
|
||||
if (new_p)
|
||||
tab->num_entries++;
|
||||
bin_ind = UNDEFINED_BIN_IND;
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue