We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73dc2dd commit 5ffb157Copy full SHA for 5ffb157
src/cache.c
@@ -76,13 +76,15 @@ static inline int hlist_empty(const struct hlist_head *h)
76
77
static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
78
{
79
+#ifndef __clang_analyzer__
80
struct hlist_node *first = h->first;
81
n->next = first;
82
if (first)
83
first->pprev = &n->next;
84
85
h->first = n;
86
n->pprev = &h->first;
87
+#endif
88
}
89
90
static inline bool hlist_unhashed(const struct hlist_node *h)
0 commit comments