You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Memory leak in lsWriteVisualizationMesh (concerning asan fail in ViszaulizationMesh test):
cellPoints on line 92 in lsWriteVisualizationMesh are not initialized as a smart pointer. This can be fixed by changing the line to: auto cellPoints = vtkSmartPointer<vtkIdList>::New();
Stack-buffer-overflow in lsDomain and lsPointData (concerning asan fail in FileWriter test):
In the deserialize functions in lsDomain and lsPointData the identifier char array can not safely be converted because the char array does not end in a null char.
This can be fixed by increasing the array size by 1 and adding a null termination char at the end.
We should probably investigate those further
Originally posted by @Curve in #99 (comment)
The text was updated successfully, but these errors were encountered: