Closed
Bug 14736
Opened 25 years ago
Closed 25 years ago
Use of uninitialized data
Categories
(Core :: Internationalization, defect, P3)
Core
Internationalization
Tracking
()
VERIFIED
FIXED
M10
People
(Reporter: colin, Assigned: ftang)
Details
intl/uconv/ucvlatin/nsUnicodeToUCS2BE.cpp
In CopyData is a line:
for(PRInt32 i; i < aLen; i++)
Notice that i is not given an initial value!! The line should be:
for(PRInt32 i=0; i < aLen; i++)
Colin.
Assignee | ||
Updated•25 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•25 years ago
|
||
great catch. Will fix soon.
Assignee | ||
Updated•25 years ago
|
Target Milestone: M10
Assignee | ||
Comment 2•25 years ago
|
||
assign this to M10.
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 3•25 years ago
|
||
fixed and check in
Updated•25 years ago
|
QA Contact: teruko → ftang
You need to log in
before you can comment on or make changes to this bug.
Description
•