Firefox · SpiderMonkey
CVE-2025-10532
Logic Error in SpiderMonkey
Overview
Medium
Severity
—
CVSS
No
Exploited ITW
Fixed
Fix Status
Changed Functions
| Function | Change | Notes |
|---|---|---|
ifjs/src/gc/Statistics.cpp |
modified |
Files Changed
js/src/gc/Statistics.cpp
Patch
diff --git a/js/src/gc/Statistics.cpp b/js/src/gc/Statistics.cpp
index 88c0d509137..8f34478c1ce 100644
--- a/js/src/gc/Statistics.cpp
+++ b/js/src/gc/Statistics.cpp
@@ -1562,7 +1562,7 @@ void Statistics::recordParallelPhase(PhaseKind phaseKind,
TimeDuration duration) {
MOZ_ASSERT(CurrentThreadCanAccessRuntime(gc->rt));
- if (aborted) {
+ if (slices_.empty()) {
return;
}
Loading diff…
References
On This Page