Opened 5 months ago

Closed 5 months ago

#18892 closed enhancement (fixed)

SpiderMonkey-115.5.0

Reported by: ken@… Owned by: ken@…
Priority: normal Milestone: 12.1
Component: BOOK Version: git
Severity: normal Keywords:
Cc:

Description

ff 115.5.0 now released. If it is true that only changes in js/src affect security issues in SpiderMonkey, then this is not a security update. The only change in js/src is:

diff -Naur firefox-115.4.0/js/src/vm/JSContext.cpp firefox-115.5.0/js/src/vm/JSContext.cpp
--- firefox-115.4.0/js/src/vm/JSContext.cpp     2023-10-17 03:48:55.000000000 +0100
+++ firefox-115.5.0/js/src/vm/JSContext.cpp     2023-11-13 20:53:51.000000000 +0000
@@ -1298,7 +1298,7 @@
   // In non-DEBUG builds MOZ_CRASH normally doesn't print to stderr so we have
   // to do this explicitly (the jit-test allow-unhandlable-oom annotation and
   // fuzzers depend on it).
-  MOZ_ReportCrash(msgbuf, __FILE__, __LINE__);
+  fprintf(stderr, "Hit MOZ_CRASH(%s) at %s:%d\n", msgbuf, __FILE__, __LINE__);
 #endif
   MOZ_CRASH_UNSAFE(msgbuf);
 }

But I do not claim to understand javascript, nor how the pieces of firefox fit together.

Change History (3)

comment:1 by Xi Ruoyao, 5 months ago

This seems only improving crash reporting.

comment:2 by ken@…, 5 months ago

Owner: changed from blfs-book to ken@…
Status: newassigned

comment:3 by ken@…, 5 months ago

Resolution: fixed
Status: assignedclosed

Book updated at sha:d54d6fc9015d

Note: See TracTickets for help on using tickets.