Closed
Bug 1141032
Opened 11 years ago
Closed 11 years ago
Debug: two minor fixes (related to JIT env and assert in irregexp)
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla39
| Tracking | Status | |
|---|---|---|
| firefox39 | --- | fixed |
People
(Reporter: bbouvier, Assigned: bbouvier)
References
(Blocks 1 open bug)
Details
(Keywords: coverity)
Attachments
(2 files)
|
1.31 KB,
patch
|
h4writer
:
review+
|
Details | Diff | Splinter Review |
|
1.11 KB,
patch
|
h4writer
:
review+
|
Details | Diff | Splinter Review |
No description provided.
| Assignee | ||
Comment 1•11 years ago
|
||
Attachment #8574635 -
Flags: review?(hv1989)
| Assignee | ||
Comment 2•11 years ago
|
||
Attachment #8574636 -
Flags: review?(hv1989)
Comment 3•11 years ago
|
||
Comment on attachment 8574635 [details] [diff] [review]
1.patch
Review of attachment 8574635 [details] [diff] [review]:
-----------------------------------------------------------------
Nice catch
Attachment #8574635 -
Flags: review?(hv1989) → review+
Comment 4•11 years ago
|
||
Comment on attachment 8574636 [details] [diff] [review]
2.patch
Review of attachment 8574636 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/src/jit/JitOptions.cpp
@@ +43,5 @@
> if (!str)
> return dflt;
> if (IsBool<T>::value) {
> if (strcmp(str, "true") == 0 ||
> + strcmp(str, "yes") == 0) {
can you put the two comparisons on one line?
or
put the { on a new line?
@@ +48,4 @@
> return true;
> }
> if (strcmp(str, "false") == 0 ||
> + strcmp(str, "no") == 0) {
ditto
Attachment #8574636 -
Flags: review?(hv1989) → review+
| Assignee | ||
Comment 5•11 years ago
|
||
Thanks for the quick review!
remote: https://hg.mozilla.org/integration/mozilla-inbound/rev/003cb0664d29
remote: https://hg.mozilla.org/integration/mozilla-inbound/rev/48c981183ff3
Keywords: coverity
https://hg.mozilla.org/mozilla-central/rev/003cb0664d29
https://hg.mozilla.org/mozilla-central/rev/48c981183ff3
Status: NEW → RESOLVED
Closed: 11 years ago
status-firefox39:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla39
Updated•7 years ago
|
Blocks: coverity-analysis
You need to log in
before you can comment on or make changes to this bug.
Description
•