mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* st.c (st_update): remove unnecessary assignment
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45336 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6c08032d2f
commit
b50780eac0
2 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Mar 15 07:02:35 2014 Eric Wong <e@80x24.org>
|
||||
|
||||
* st.c (st_update): remove unnecessary assignment
|
||||
|
||||
Fri Mar 14 14:58:38 2014 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* addr2line.c (fill_lines): fetch symbol names from ELF binary's
|
||||
|
|
1
st.c
1
st.c
|
@ -921,7 +921,6 @@ st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_data
|
|||
last = &table->bins[bin_pos];
|
||||
for (; (tmp = *last) != 0; last = &tmp->next) {
|
||||
if (ptr == tmp) {
|
||||
tmp = ptr->fore;
|
||||
*last = ptr->next;
|
||||
remove_entry(table, ptr);
|
||||
st_free_entry(ptr);
|
||||
|
|
Loading…
Reference in a new issue