diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-17 19:01:14 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-12-17 19:01:14 (GMT) |
commit | 050fce2b73d6e4455808ab86da2fddcf2f26e9b5 (patch) | |
tree | b8fdecd6098a74a357b1a820d7cd4f8a81ec1736 /src | |
parent | 2716fc48889c3cffe46903cdb3a64bb0ac735449 (diff) | |
download | Doxygen-050fce2b73d6e4455808ab86da2fddcf2f26e9b5.zip Doxygen-050fce2b73d6e4455808ab86da2fddcf2f26e9b5.tar.gz Doxygen-050fce2b73d6e4455808ab86da2fddcf2f26e9b5.tar.bz2 |
Bug 741417 - Crash when building gtkmm documentation
Diffstat (limited to 'src')
-rw-r--r-- | src/doxygen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index f0a8719..b9437f6 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -1010,6 +1010,7 @@ static Definition *buildScopeFromQualifiedName(const QCString name, while (i<level) { int idx=getScopeFragment(name,p,&l); + if (idx==-1) return prevScope; QCString nsName = name.mid(idx,l); if (nsName.isEmpty()) return prevScope; if (!fullScope.isEmpty()) fullScope+="::"; |