Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
e84d13a9
Commit
e84d13a9
authored
Jul 06, 2016
by
Andrew Bauer
Browse files
Fixing null pointer dereferencing.
Mantis issue
http://www.paraview.org/Bug/view.php?id=10528
parent
9fcbac09
Changes
1
Show whitespace changes
Inline
Side-by-side
IO/XML/vtkXMLUnstructuredDataWriter.cxx
View file @
e84d13a9
...
...
@@ -595,7 +595,10 @@ void vtkXMLUnstructuredDataWriter::WriteCellsInline(const char* name,
vtkIdTypeArray
*
faces
,
vtkIdTypeArray
*
faceOffsets
,
vtkIndent
indent
)
{
if
(
cells
)
{
this
->
ConvertCells
(
cells
);
}
this
->
ConvertFaces
(
faces
,
faceOffsets
);
this
->
WriteCellsInlineWorker
(
name
,
types
,
indent
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment