Closed
Bug 59666
Opened 24 years ago
Closed 24 years ago
Occurances of uninitialized variables being used before being set.
Categories
(Core :: Internationalization, defect, P3)
Core
Internationalization
Tracking
()
VERIFIED
FIXED
People
(Reporter: rich.burridge, Assigned: shanjian)
References
Details
Attachments
(5 files)
912 bytes,
patch
|
Details | Diff | Splinter Review | |
546 bytes,
patch
|
Details | Diff | Splinter Review | |
1.79 KB,
patch
|
Details | Diff | Splinter Review | |
1.80 KB,
patch
|
Details | Diff | Splinter Review | |
549 bytes,
patch
|
Details | Diff | Splinter Review |
For more details on this problem, see:
http://bugzilla.mozilla.org/show_bug.cgi?id=59652
This bug is just for the warnings in various source files in the
Internationization module:
nsUnicodeToISO2022JP.cpp:153: warning: `nsresult res' might be used
uninitialized in this function
----
nsCharDetModule.cpp:151: warning: `nsresult rv' might be used uninitialized in
this function
----
nsPSMDetectors.cpp:442: warning: `PRInt32 bestIdx' might be used uninitialized
in this function
----
Assignee | ||
Comment 2•24 years ago
|
||
Assignee | ||
Comment 3•24 years ago
|
||
Assignee | ||
Comment 4•24 years ago
|
||
Assignee | ||
Comment 5•24 years ago
|
||
The first 2 places seems fine. The 3rd is very likely to cause crashes. Let me
know when and where should I check in those fixes. (Please email me directly.)
frank, please review those changes.
Status: NEW → ASSIGNED
Reporter | ||
Comment 6•24 years ago
|
||
It's too late to check in to the RTM branch, so I'm assuming
these changes will need to be checked into the Mozilla trunk.
We (Sun) will also be adding similar changes to our OEM source
code branch for our RTM/FCS release. Thanks for finding/fixing
these so quickly!
Comment 7•24 years ago
|
||
For the first patch, should it be initialized as NS_OK or an error?
Cata, do you have any idea?
Assignee | ||
Comment 8•24 years ago
|
||
The only case that res will not be assigned before it is returned by is
Src >= SrcEnd, and that is the length equal to 0. Since there is nothing
to do, we cann't say it's a failure.
Comment 9•24 years ago
|
||
Okay, r=nhotta for three patches (Frank is not available now), please get a
super review.
Comment 10•24 years ago
|
||
Patch 3 seems to have some indentation problems. Maybe you have tabs in there?
There should not be any tabs in Mozilla source. Please fix this, and re-submit
Patch 3. Then I will give sr=.
Assignee | ||
Comment 11•24 years ago
|
||
Assignee | ||
Comment 12•24 years ago
|
||
Assignee | ||
Comment 13•24 years ago
|
||
new patch remove tab to spaces.
Comment 14•24 years ago
|
||
Shanjian, the Mozilla convention is to use 2 spaces to indent.
http://www.mozilla.org/newlayout/doc/codingconventions.html
No need to attach new patches. sr=erik as long as you change it to 2 spaces
Assignee | ||
Comment 15•24 years ago
|
||
fix checked in.
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 16•24 years ago
|
||
Changes also checked into the OEM branch.
Comment 17•24 years ago
|
||
Changed QA contact to shanjian@netscape.com. Shanjian, QA cannot verify this. Please mark as verified.
QA Contact: teruko → shanjian
You need to log in
before you can comment on or make changes to this bug.
Description
•