I have the following code which ends up in a segmentation fault.
for (int a=0; a<inputFileList.size(); a++)
{
fileLines = readFile(inputFileList[a].c_str());
for (int i = 0; i < fileLines.size(); i++)
{
if (fileLines[i].find("text") != string::npos)
{
bool warnFound = false, errFound = false;
i++;
while (fileLines[i].find("message") == string::npos && i < fileLines.size())
{
if (fileLines[i].find("error") != string::npos)
errFound = true;
else if (fileLines[i].find("warning") != string::npos)
warnFound = true;
i++;
}
i--;
if (errFound)
errCtr++;
开发者_开发问答 else if (warnFound)
warnCtr++;
else
okCtr++;
}
}
fileLines.clear();
}
When i remove the while-loop, i don't get this error anymore. But i don't know what's wrong with this loop.
Thx for your support
The while should probably read
while (i < fileLines.size() && fileLines[i].find("message") == string::npos)
This :
while (fileLines[i].find("message") == string::npos && i < fileLines.size())
should be:
while (i < fileLines.size() && fileLines[i].find("message") == string::npos )
I'm not sure if it has anything to do with the error you're getting, but you seem to have a problem with the i++
on line 7. It may increase i even when i == fileLines.size() - 1
, so fileLines[i].find("message")
on the next line would access a non-existing item.
精彩评论