mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
SystemMonitor: Fix assert when sorting by the "Page map" column
This commit is contained in:
parent
e596b1da88
commit
f910cdcdb7
Notes:
sideshowbarker
2024-07-19 02:16:52 +09:00
Author: https://github.com/xTibor Commit: https://github.com/SerenityOS/serenity/commit/f910cdcdb7c Pull-request: https://github.com/SerenityOS/serenity/pull/3577
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ ProcessMemoryMapWidget::ProcessMemoryMapWidget()
|
|||
return GUI::Variant();
|
||||
},
|
||||
[](auto&) {
|
||||
return GUI::Variant();
|
||||
return GUI::Variant(0);
|
||||
},
|
||||
[](const JsonObject& object) {
|
||||
auto pagemap = object.get("pagemap").as_string_or({});
|
||||
|
|
Loading…
Reference in a new issue