Fixed a copy-paste bug which was causing an infinite loop while parsing output.

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6103 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
wonder 2006-11-17 01:59:12 +00:00
parent ccf5074940
commit bd9f9fe5ab

View File

@ -725,7 +725,7 @@ void QgsGrassShell::printStdout()
if ( rxend.search(mStdoutBuffer) == 0 )
{
mlen = rxerror.matchedLength();
mlen = rxend.matchedLength();
mStdoutBuffer.remove ( 0, mlen );
continue;
}