diff --git a/FileIO/VtkIO/VtuInterface.cpp b/FileIO/VtkIO/VtuInterface.cpp
index 4b88b1e32d71494fe147b46e11584d25b5bdb4fb..372498c03b00a4ce3edf62d78f4767f66413e988 100644
--- a/FileIO/VtkIO/VtuInterface.cpp
+++ b/FileIO/VtkIO/VtuInterface.cpp
@@ -44,7 +44,7 @@ VtuInterface::~VtuInterface()
 MeshLib::Mesh* VtuInterface::readVTUFile(std::string const &file_name)
 {
 	vtkSmartPointer<vtkXMLUnstructuredGridReader> reader =
-		vtkXMLUnstructuredGridReader::New();
+		vtkSmartPointer<vtkXMLUnstructuredGridReader>::New();
 
 	reader->SetFileName(file_name.c_str());
 	reader->Update();
diff --git a/MeshGeoToolsLib/MeshNodeSearcher.cpp b/MeshGeoToolsLib/MeshNodeSearcher.cpp
index 74aac2d2677fe10ccf1fae657ad7c1ee7a0aeee7..299906a0e9eb4fcd3822dde978a0e563a478a61b 100644
--- a/MeshGeoToolsLib/MeshNodeSearcher.cpp
+++ b/MeshGeoToolsLib/MeshNodeSearcher.cpp
@@ -42,10 +42,10 @@ MeshNodeSearcher::MeshNodeSearcher(MeshLib::Mesh const& mesh,
 
 MeshNodeSearcher::~MeshNodeSearcher()
 {
-	std::vector<MeshNodesAlongPolyline*>::iterator it(_mesh_nodes_along_polylines.begin());
-	for (; it != _mesh_nodes_along_polylines.end(); ++it) {
-		delete (*it);
-	}
+	for (auto pointer : _mesh_nodes_along_polylines)
+		delete pointer;
+	for (auto pointer : _mesh_nodes_along_surfaces)
+		delete pointer;
 }
 
 std::vector<std::size_t> MeshNodeSearcher::getMeshNodeIDs(GeoLib::GeoObject const& geoObj)