We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 'tree' is passed as argument to tree_node_min() instead of tree->node. Please apply the following patch.
--- a/usr/lib/libdict/src/tree_common.c +++ b/usr/lib/libdict/src/tree_common.c @@ -179,7 +179,7 @@ tree_traverse(void* Tree, dict_visit_func visit)
size_t count = 0; if (tree->root) {
tree_node\* node = tree_node_min(tree);
tree_node\* node = tree_node_min(tree->root);
Thanks, Ashoka
The text was updated successfully, but these errors were encountered:
Thank you for submitting a fix for this. I have merged the pull request.
Sorry, something went wrong.
No branches or pull requests
The 'tree' is passed as argument to tree_node_min() instead
of tree->node. Please apply the following patch.
--- a/usr/lib/libdict/src/tree_common.c
+++ b/usr/lib/libdict/src/tree_common.c
@@ -179,7 +179,7 @@ tree_traverse(void* Tree, dict_visit_func visit)
Thanks,
Ashoka
The text was updated successfully, but these errors were encountered: