clang-10 analyzer reports following:
avl.c:671:25: warning: Access to field 'parent' results in a dereference of a null pointer (loaded from field 'right')
node->right->parent = parent;
~~~~~ ^
Which seems to be impossible to trigger via exported AVL public API, but
it could be probably trigerred by fiddling with the AVL tree node struct
members manually as they are exposed.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
#include <string.h>
#include "avl.h"
+#include "assert.h"
#include "list.h"
/**
return;
}
+ assert(node->right);
node->right->parent = parent;
if (parent->left == node)