From f7062c64c8ea0b48a0941cbea592aa62059c6fed Mon Sep 17 00:00:00 2001 From: GIC-de Date: Thu, 28 Nov 2024 17:00:18 +0000 Subject: [PATCH] deploy: f0812a02bb837cebebd0d1bfba8562159efceedd --- html/skiplist_8c_source.html | 2 +- xml/skiplist_8c.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/skiplist_8c_source.html b/html/skiplist_8c_source.html index 016441e..0b356e9 100644 --- a/html/skiplist_8c_source.html +++ b/html/skiplist_8c_source.html @@ -265,7 +265,7 @@
169 }
170
171 x->prev = (update[0] == list->head) ? NULL : update[0];
-
172 if (update[0]->link && update[0]->link[0])
+
172 if (update[0]->link[0])
173 update[0]->link[0]->prev = x;
174 for (unsigned k = 0; k < nlinks; k++) {
175 ASSERT(update[k]->link_count > k);
diff --git a/xml/skiplist_8c.xml b/xml/skiplist_8c.xml index f019afc..4f54ef6 100644 --- a/xml/skiplist_8c.xml +++ b/xml/skiplist_8c.xml @@ -1373,7 +1373,7 @@ } x->prev=(update[0]==list->head)?NULL:update[0]; -if(update[0]->link&&update[0]->link[0]) +if(update[0]->link[0]) update[0]->link[0]->prev=x; for(unsignedk=0;k<nlinks;k++){ ASSERT(update[k]->link_count>k);