1
0
Fork 0
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:
normal 2014-03-14 22:25:48 +00:00
parent 6c08032d2f
commit b50780eac0
2 changed files with 4 additions and 1 deletions

View file

@ -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
View file

@ -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);