Opened 15 months ago
Closed 15 months ago
#18892 closed enhancement (fixed)
SpiderMonkey-115.5.0
Reported by: | Owned by: | ||
---|---|---|---|
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 , 15 months ago
comment:2 by , 15 months ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 15 months ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Book updated at sha:d54d6fc9015d
Note:
See TracTickets
for help on using tickets.
This seems only improving crash reporting.