Skip to content

Commit 6bec888

Browse files
authored
Merge pull request #72 from firewave/column-fix
Fixed NullPointerException with Cppcheck < 1.89 caused by missing 'column' attribute in XML result
2 parents 8586656 + 28a94d4 commit 6bec888

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,14 @@ Deployment.
6060

6161
## Releases
6262

63-
### X.X.X - Unreleased
63+
### 1.6.2 - 2022-01-25
64+
65+
- Fixed `NullPointerException` with Cppcheck < 1.89 caused by missing `column` attribute in XML result.
66+
67+
### 1.6.1 - 2022-01-14
68+
69+
- Fixed missing `commons-lang3` dependency.
70+
- Fixed `.idea` project provided by repository.
6471

6572
### 1.6.0 - 2021-12-26
6673

resources/META-INF/plugin.xml

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.github.johnthagen.cppcheck</id>
33
<name>cppcheck</name>
4-
<version>1.6.1</version>
4+
<version>1.6.2</version>
55
<vendor email="[email protected]" url="http://github.com/johnthagen">johnthagen</vendor>
66

77
<description><![CDATA[
@@ -60,14 +60,7 @@
6060
]]></description>
6161

6262
<change-notes><![CDATA[
63-
- Parse --xml output instead of text output. (Contribution by @firewave)<br/>
64-
- Fixed scanning of files with whitespaces in name. (Contribution by @firewave)
65-
- Only scan files which actually exist. (Contribution by @firewave)
66-
- Use unique file names for temporary files used for analysis. (Contribution by @firewave)
67-
- Properly handle "debug" messages generated by --debug-warnings. (Contribution by @firewave)
68-
- Added .cl, .hxx, .tpp and .txx to list of supported file extensions - now matches the ones supported by Cppcheck internally. (Contribution by @firewave)
69-
- Internally suppress "unusedFunction" and "unusedStructMember" (for header files only) warnings to avoid false positives. (Contribution by @firewave)
70-
- Fixed "information" messages not being shown at all. (Contribution by @firewave)
63+
- Fixed `NullPointerException` with Cppcheck < 1.89 caused by missing 'column' attribute in XML result.
7164
]]>
7265
</change-notes>
7366

src/com/github/johnthagen/cppcheck/CppCheckInspectionImpl.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,13 @@ public static List<ProblemDescriptor> parseOutput(@NotNull final PsiFile psiFile
159159
final NamedNodeMap locationAttributes = location.getAttributes();
160160
final String fileName = new File(locationAttributes.getNamedItem("file").getNodeValue()).getName();
161161
int lineNumber = Integer.parseInt(locationAttributes.getNamedItem("line").getNodeValue());
162-
final int column = Integer.parseInt(locationAttributes.getNamedItem("column").getNodeValue()); // TODO
162+
final Node columnAttr = locationAttributes.getNamedItem("column");
163+
// TODO: use in ProblemDescriptor
164+
int column = -1;
165+
// the "column" attribute was added in Cppcheck 1.89
166+
if (columnAttr != null) {
167+
column = Integer.parseInt(columnAttr.getNodeValue());
168+
}
163169

164170
// If a file #include's header files, Cppcheck will also run on the header files and print
165171
// any errors. These errors don't apply to the current file and should not be drawn. They can

0 commit comments

Comments
 (0)