aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/support
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2016-01-25 11:47:58 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2016-01-25 11:47:58 -0800
commitba7d4dff76908e370d334331d4cd95401561eb11 (patch)
tree948626b61337d8a584f25db9ecd2b6aca8708986 /src/core/support
parent84fc962064d53032ccf7b9d92d41a4535c07c171 (diff)
Fix avl copying
Diffstat (limited to 'src/core/support')
-rw-r--r--src/core/support/avl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/avl.c b/src/core/support/avl.c
index 9734c9987f..8d3ce23e6c 100644
--- a/src/core/support/avl.c
+++ b/src/core/support/avl.c
@@ -167,7 +167,7 @@ static gpr_avl_node *rotate_right_left(const gpr_avl_vtable *vtable, void *key,
vtable->copy_key(right->left->key),
vtable->copy_value(right->left->value),
new_node(key, value, left, ref_node(right->left->left)),
- new_node(vtable->copy_key(right->key), vtable->copy_key(right->value),
+ new_node(vtable->copy_key(right->key), vtable->copy_value(right->value),
ref_node(right->left->right), ref_node(right->right)));
unref_node(vtable, right);
return n;