diff --git a/src/plugins/cpptools/cppmodelmanager.cpp b/src/plugins/cpptools/cppmodelmanager.cpp index c16f986180c958fbcfcfc22b509ecd5fbc2f91dc..2c7d0f8f5a662cc19d80f7955332f602cbf91e87 100644 --- a/src/plugins/cpptools/cppmodelmanager.cpp +++ b/src/plugins/cpptools/cppmodelmanager.cpp @@ -1120,6 +1120,10 @@ void CppModelManager::updateIncludesInPaths(QFutureInterface<void> &future, const QString suffix = fileInfo.suffix(); if (suffix.isEmpty() || suffixes.contains(suffix)) { QString text = fileName.mid(path.length() + 1); + if (text.isEmpty()) { + qWarning() << Q_FUNC_INFO << "Empty filename?" << path << fileName; + continue; + } if (fileInfo.isDir()) { text += QLatin1Char('/');