|
a/src/internfile/internfile.cpp |
|
b/src/internfile/internfile.cpp |
|
... |
|
... |
659 |
LOGDEB1(("FileInterner::addHandler: target reached\n"));
|
659 |
LOGDEB1(("FileInterner::addHandler: target reached\n"));
|
660 |
return ADD_BREAK;
|
660 |
return ADD_BREAK;
|
661 |
}
|
661 |
}
|
662 |
|
662 |
|
663 |
// We need to stack another handler. Check stack size
|
663 |
// We need to stack another handler. Check stack size
|
664 |
if (m_handlers.size() > MAXHANDLERS) {
|
664 |
if (m_handlers.size() >= MAXHANDLERS) {
|
665 |
// Stack too big. Skip this and go on to check if there is
|
665 |
// Stack too big. Skip this and go on to check if there is
|
666 |
// something else in the current back()
|
666 |
// something else in the current back()
|
667 |
LOGERR(("FileInterner::addHandler: stack too high\n"));
|
667 |
LOGERR(("FileInterner::addHandler: stack too high\n"));
|
668 |
return ADD_CONTINUE;
|
668 |
return ADD_CONTINUE;
|
669 |
}
|
669 |
}
|