Skip to content

Commit

Permalink
Merge pull request #18449 from jackdelv/HPCC-31520
Browse files Browse the repository at this point in the history
HPCC-31520 Fix new defects reported by Coverity Scan for MarkupDiskRowReader

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Mar 27, 2024
2 parents 1d37611 + 365de94 commit 1e2fe1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/thorhelper/thorread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ class MarkupDiskRowReader : public ExternalFormatDiskRowReader, implements IXMLS
StringBuffer rowTag;

ThorActivityKind kind;
IXmlToRowTransformer *xmlTransformer;
IXmlToRowTransformer *xmlTransformer = nullptr;
Linked<IColumnProvider> lastMatch;
Owned<IXMLParse> xmlParser;

Expand Down
2 changes: 1 addition & 1 deletion fs/dafsserver/dafsserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1724,7 +1724,7 @@ class CRemoteMarkupReadActivity : public CRemoteExternalFormatReadActivity, impl
typedef CRemoteExternalFormatReadActivity PARENT;

ThorActivityKind kind;
IXmlToRowTransformer *xmlTransformer;
IXmlToRowTransformer *xmlTransformer = nullptr;
Linked<IColumnProvider> lastMatch;
Owned<IXMLParse> xmlParser;

Expand Down

0 comments on commit 1e2fe1a

Please sign in to comment.