Skip to content

Commit 865289b

Browse files
committed
fix paring heap UB
1 parent 6d9d8d7 commit 865289b

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

libopenage/datastructure/pairing_heap.h

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2014-2024 the openage authors. See copying.md for legal info.
1+
// Copyright 2014-2025 the openage authors. See copying.md for legal info.
22

33
#pragma once
44

@@ -404,7 +404,7 @@ class PairingHeap final {
404404
* erase all elements on the heap.
405405
*/
406406
void clear() {
407-
auto delete_node = [](element_t node) { delete node; };
407+
auto delete_node = [](element_t& node) { delete node; node = nullptr; };
408408
this->iter_all<true>(delete_node);
409409
this->root_node = nullptr;
410410
this->node_count = 0;
@@ -586,7 +586,7 @@ class PairingHeap final {
586586
* @param func Function to apply to each node.
587587
*/
588588
template <bool reverse = false>
589-
void iter_all(const std::function<void(const element_t &)> &func) const {
589+
void iter_all(const std::function<void(element_t &)> &func) {
590590
this->walk_tree<reverse>(this->root_node, func);
591591
}
592592

@@ -599,21 +599,18 @@ class PairingHeap final {
599599
* @param func Function to apply to each node.
600600
*/
601601
template <bool reverse = false>
602-
void walk_tree(const element_t &start,
603-
const std::function<void(const element_t &)> &func) const {
602+
void walk_tree(element_t &start,
603+
const std::function<void(element_t &)> &func) {
604604
if constexpr (not reverse) {
605605
func(start);
606606
}
607607

608608
if (start) {
609609
auto node = start->first_child;
610-
while (true) {
611-
if (not node) {
612-
break;
613-
}
614-
610+
while (node) {
615611
this->walk_tree<reverse>(node, func);
616-
node = node->next_sibling;
612+
if (node)
613+
node = node->next_sibling;
617614
}
618615
if constexpr (reverse) {
619616
func(start);

0 commit comments

Comments
 (0)