Commit 46ea3bc83895a630a8e892ebe2af2526fce56b6a

Authored by Georg Hopp
1 parent 11691194

small fix

Showing 1 changed file with 2 additions and 4 deletions
... ... @@ -28,6 +28,7 @@ TR_treeDelete(TR_Tree * this, const void * search, TR_TreeComp comp)
28 28 {
29 29 TR_Tree node = *this;
30 30 TR_Tree del_node;
  31 + TR_Tree sibling;
31 32 int found;
32 33
33 34 void * data;
... ... @@ -104,10 +105,7 @@ TR_treeDelete(TR_Tree * this, const void * search, TR_TreeComp comp)
104 105 * rebalancing process...(this does not make much sense, but
105 106 * to be honest I don't know now.)
106 107 */
107   - {
108   - TR_Tree sibling = TR_TREE_SIBLING(node);
109   - TR_TREE_BALANCE_DELETE(this, node, sibling);
110   - }
  108 + TR_TREE_BALANCE_DELETE(this, node, sibling);
111 109
112 110 TR_delete(del_node);
113 111 return data;
... ...
Please register or login to post a comment