From 28cc4f75437eec9e76f52723f042445332fd86f5 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 29 Mar 2012 14:50:20 +0000 Subject: * st.c (st_update): pass pointer to key to the callback function. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'st.c') diff --git a/st.c b/st.c index bb802cfd22..180e6e75df 100644 --- a/st.c +++ b/st.c @@ -841,7 +841,7 @@ st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_data existing = 1; } { - retval = (*func)(key, &value, arg, existing); + retval = (*func)(&key, &value, arg, existing); if (!table->entries_packed) { FIND_ENTRY(table, ptr, hash_val, bin_pos); goto unpacked; @@ -869,7 +869,7 @@ st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_data existing = 1; } { - retval = (*func)(ptr->key, &value, arg, existing); + retval = (*func)(&key, &value, arg, existing); unpacked: switch (retval) { case ST_CONTINUE: -- cgit v1.2.3