diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index 88dc44a5..a76d5a96 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -9,10 +9,17 @@
| 7.1 (?/?/?) |
+b>IO
+
+- Fixed slow OBJ reader (Thanks to Etienne Danvoye for the patch)
+
-General
+
+Build System
- Remove old qmake project files. Unmaintained for a very long time
+- Replaced Qt finders
+- Added VS 2017 to CI builds
|
diff --git a/src/OpenMesh/Core/IO/reader/OBJReader.cc b/src/OpenMesh/Core/IO/reader/OBJReader.cc
index 4128b231..6be24e0f 100644
--- a/src/OpenMesh/Core/IO/reader/OBJReader.cc
+++ b/src/OpenMesh/Core/IO/reader/OBJReader.cc
@@ -540,6 +540,7 @@ read(std::istream& _in, BaseImporter& _bi, Options& _opt)
vhandles.clear();
face_texcoords.clear();
+ face_texcoords3d.clear();
// read full line after detecting a face
std::string faceLine;