Merge branch 'cmFileMonitor-skip-empty-names' into release
This commit is contained in:
commit
0051989738
|
@ -331,6 +331,9 @@ void cmFileMonitor::MonitorPaths(const std::vector<std::string>& paths,
|
||||||
rootSegment)); // Can not be both filename and root part of the path!
|
rootSegment)); // Can not be both filename and root part of the path!
|
||||||
|
|
||||||
const std::string& currentSegment = pathSegments[i];
|
const std::string& currentSegment = pathSegments[i];
|
||||||
|
if (currentSegment.empty()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
cmIBaseWatcher* nextWatcher = currentWatcher->Find(currentSegment);
|
cmIBaseWatcher* nextWatcher = currentWatcher->Find(currentSegment);
|
||||||
if (!nextWatcher) {
|
if (!nextWatcher) {
|
||||||
|
|
Loading…
Reference in New Issue