#5447 closed defect (fixed)
SCI: Code analysis warnings
Reported by: | Templier | Owned by: | bluegr |
---|---|---|---|
Priority: | normal | Component: | Engine: SCI |
Version: | Keywords: | build | |
Cc: | Game: |
Description
Here are the warnings I get when compiling the engine using Code Analysis in VS2010. I tried to remove all the obvious false positives. Some warnings look suspicious, others are pointing to correct code that still might benefit from better error checking.
d:\sources\scummvm\scummvm\engines\sci\console.cpp(2126): warning C6011: Dereferencing NULL pointer 'curValue' d:\sources\scummvm\scummvm\engines\sci\graphics\font.cpp(91): warning C6336: Arithmetic operator has precedence over question operator, use parentheses to clarify intent d:\sources\scummvm\scummvm\engines\sci\engine\kgraphics.cpp(354): warning C6011: Dereferencing NULL pointer 'dest' d:\sources\scummvm\scummvm\engines\sci\engine\kpathing.cpp(1333): warning C6011: Dereferencing NULL pointer 'vertex_min'
Note: If you want to try it yourself, you will need: - the create_project patch set, along with the WIP code analysis patch (http://bitbucket.org/Littleboy/scummvm-jt/src) - the following patch to silence some false positives ( http://bitbucket.org/Littleboy/scummvm-jt/src/tip/COMMON%20-%20Add%20annotations%20for%20analysis%20build%20configuration.patch ) - Visual Studio 2010 Ultimate or Team System (create_project support for analysis with VS2005/2008 isn't complete yet)
Ticket imported from: #3087872. Ticket imported from: bugs/5447.
Change History (7)
comment:1 by , 14 years ago
comment:2 by , 14 years ago
Owner: | set to |
---|---|
Resolution: | → fixed |
Status: | new → closed |
comment:3 by , 14 years ago
Status: | closed → new |
---|
comment:4 by , 14 years ago
Here are the results of the latest analysis build:
d:\sources\scummvm\scummvm-jt\engines\sci\sound\soundcmd.cpp(141): warning C6011: Dereferencing NULL pointer 'class Sci::SciEngine * Sci::g_sci': Lines: 123, 124, 129, 131, 134, 135, 136, 138, 141 d:\sources\scummvm\scummvm-jt\engines\sci\sound\soundcmd.cpp(627): warning C6011: Dereferencing NULL pointer 'class Sci::SciEngine * Sci::g_sci': Lines: 602, 603, 605, 607, 608, 613, 614, 616, 620, 621, 624, 627 d:\sources\scummvm\scummvm-jt\engines\sci\engine\script.cpp(614): warning C6336: Arithmetic operator has precedence over question operator, use parentheses to clarify intent
(plus the one in console.cpp already identified as a false positive)
comment:6 by , 14 years ago
Status: | new → closed |
---|
comment:7 by , 6 years ago
Component: | → Engine: SCI |
---|
Fixed The first warning in console.cpp seems to be a false positive