mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-19 15:58:56 +00:00
LibWeb: Add missing visit of IDBCursor::m_value
Clang plugin bug: LadybirdBrowser/ladybird#5958
This commit is contained in:
parent
1f88e6819a
commit
02f3002081
Notes:
github-actions[bot]
2025-08-22 17:30:38 +00:00
Author: https://github.com/awesomekling
Commit: 02f3002081
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5960
Reviewed-by: https://github.com/gmta ✅
1 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,9 @@ void IDBCursor::visit_edges(Visitor& visitor)
|
|||
visitor.visit(m_range);
|
||||
visitor.visit(m_request);
|
||||
|
||||
if (m_value.has_value())
|
||||
visitor.visit(*m_value);
|
||||
|
||||
m_source_handle.visit([&](auto& source) {
|
||||
visitor.visit(source);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue