diff --git a/Userland/DevTools/Profiler/Profile.cpp b/Userland/DevTools/Profiler/Profile.cpp index f84b01b63f..104af281ca 100644 --- a/Userland/DevTools/Profiler/Profile.cpp +++ b/Userland/DevTools/Profiler/Profile.cpp @@ -105,6 +105,9 @@ void Profile::rebuild_tree() if (!process_filter_contains(event.pid, event.serial)) continue; + if (event.data.has()) + continue; + m_filtered_event_indices.append(event_index); if (auto* malloc_data = event.data.get_pointer(); malloc_data && !live_allocations.contains(malloc_data->ptr))