Closed
Bug 1120125
Opened 10 years ago
Closed 10 years ago
compile error in nsNTLMAuthModule.cpp (big endian)
Categories
(Core :: Networking, defect)
Tracking
()
RESOLVED
FIXED
mozilla38
People
(Reporter: stevensn, Assigned: stevensn)
References
Details
Attachments
(1 file)
3.34 KB,
patch
|
keeler
:
review+
lmandel
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
nsNTLMAuthModule fails to build on big endian with
src/security/manager/ssl/src/nsNTLMAuthModule.cpp:593:74: error: expected ?(? before ?domainPtr?
WriteUnicodeLE((void *) domainPtr, reinterpret_cast<const uint16_t*> domainPtr,
This is a result of f09bfc814171 for bug 423758
Assignee | ||
Comment 1•10 years ago
|
||
Fixes the compiler error.
Note: char can be signed or unsigned depending on the platform.
Attachment #8547112 -
Flags: review?(dkeeler)
Assignee | ||
Comment 2•10 years ago
|
||
Comment 3•10 years ago
|
||
Comment on attachment 8547112 [details] [diff] [review]
fix_1120125.diff
Review of attachment 8547112 [details] [diff] [review]:
-----------------------------------------------------------------
Good call. Out of curiosity, what platforms do we support that are big-endian?
Attachment #8547112 -
Flags: review?(dkeeler) → review+
Assignee | ||
Comment 4•10 years ago
|
||
No tier-1 platforms are big endian but the community including downstream OS distributions regularly build firefox on sparc and powerpc.
Keywords: checkin-needed
Comment 5•10 years ago
|
||
Assignee: nobody → steve
Keywords: checkin-needed
Comment 6•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla38
Assignee | ||
Updated•10 years ago
|
status-firefox37:
--- → affected
status-firefox38:
--- → affected
Assignee | ||
Comment 7•10 years ago
|
||
Comment on attachment 8547112 [details] [diff] [review]
fix_1120125.diff
Approval Request Comment
[Feature/regressing bug #]: bug 423758
[User impact if declined]: Firefox will not build on big endian platforms
[Describe test coverage new/current, TBPL]: Tested on m-c
[Risks and why]: Low risk, changing code in a #ifdef that is NPOTB-tier1
[String/UUID change made/needed]:
Attachment #8547112 -
Flags: approval-mozilla-aurora?
Updated•10 years ago
|
Comment 8•10 years ago
|
||
Comment on attachment 8547112 [details] [diff] [review]
fix_1120125.diff
Aurora+
Attachment #8547112 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Assignee | ||
Updated•10 years ago
|
Keywords: checkin-needed
Comment 9•10 years ago
|
||
Updated•10 years ago
|
Keywords: checkin-needed
You need to log in
before you can comment on or make changes to this bug.
Description
•