Commit e573cbf0 authored by Max Kellermann's avatar Max Kellermann

db/update/Queue: work around GCC7 -Wuninitialized

parent dead4615
...@@ -49,6 +49,10 @@ struct UpdateQueueItem { ...@@ -49,6 +49,10 @@ struct UpdateQueueItem {
bool IsDefined() const { bool IsDefined() const {
return id != 0; return id != 0;
} }
void Clear() {
id = 0;
}
}; };
class UpdateQueue { class UpdateQueue {
......
...@@ -252,7 +252,7 @@ UpdateService::RunDeferred() ...@@ -252,7 +252,7 @@ UpdateService::RunDeferred()
delete walk; delete walk;
walk = nullptr; walk = nullptr;
next = UpdateQueueItem(); next.Clear();
idle_add(IDLE_UPDATE); idle_add(IDLE_UPDATE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment