Closed
Bug 715023
Opened 13 years ago
Closed 13 years ago
Clang Static Analysis: Function call argument is an uninitialized value in layout/tables/nsTableFrame.cpp
Categories
(Core :: Layout: Tables, defect)
Core
Layout: Tables
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: decoder, Unassigned)
References
(Blocks 1 open bug, )
Details
The following report (in the URL field) has been generated by static analysis using Clang.
It would be good if someone familiar with the particular code could check if
- this is really a bug or a false positive
- and/or if it makes sense to adjust the code (even if there is not a real bug present, e.g. by adding a missing initialization).
In this particular report, the analysis seems to assume | pseudoFrame == NULL | can happen which leaves the | content | pointer uninitialized when it is used in line 2174.
Comment 1•13 years ago
|
||
> the analysis seems to assume | pseudoFrame == NULL |
'pseudoFrame' is always non-null when entering the while-loop
at line 2168, because we would have already crashed at line 2146
if 'aFrameList.FirstChild()' were null, which means 'content' is
always assigned.
Reporter | ||
Comment 2•13 years ago
|
||
(In reply to Mats Palmgren [:mats] from comment #1)
> 'pseudoFrame' is always non-null when entering the while-loop
> at line 2168, because we would have already crashed at line 2146
> if 'aFrameList.FirstChild()' were null, which means 'content' is
> always assigned.
Thanks for looking into this. This is probably the same analysis bug we've been hitting before: Clang doesn't realize that | aFrameList.FirstChild() | returns the same value when called twice in this method (the inlining implementation in Clang analyzer is not working yet afaik).
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → WORKSFORME
You need to log in
before you can comment on or make changes to this bug.
Description
•