← Back to team overview

mudlet-makers team mailing list archive

Re: [Bug 645129] [NEW] mudlet crashes with wormud.org

 

Hm. Thank you. What is your Qt version?

On 2010-09-22 7:45 AM, "David" <645129@xxxxxxxxxxxxxxxxxx> wrote:

Public bug reported:

Mudlet crashes shortly after connecting to wotmud.org, with a QList index
out of range error.  I have traced it to line 2255 of TBuffer.cpp - it seems
that promptList is not necessarily the same size as tempList.  The error can
be removed by replacing that line with:
       if( promptList.size() >= 1 )
       {
           promptBuffer.push_back( promptList[i] );
       }
       else
       {
           promptBuffer.push_back( false );
       }
 but this might have ramifications of which I am not aware, so I do not want
to propose it as a solution.

** Affects: mudlet
    Importance: Undecided
        Status: New

--
mudlet crashes with wormud.org
https://bugs.launchpad.net/bugs/645129
You received this bug notification because you are a member of Mudlet
Makers, which is subscribed to Mudlet.

Status in Mudlet the MUD client: New

Bug description:
Mudlet crashes shortly after connecting to wotmud.org, with a QList index
out of range error.  I have traced it to line 2255 of TBuffer.cpp - it seems
that promptList is not necessarily the same size as tempList.  The error can
be removed by replacing that line with:
       if( promptList.size() >= 1 )
       {
           promptBuffer.push_back( promptList[i] );
       }
       else
       {
           promptBuffer.push_back( false );
       }
 but this might have ramifications of which I am not aware, so I do not want
to propose it as a solution.


_______________________________________________
Mailing list: https://launchpad.net/~mudlet-makers
Post to     : mudlet-makers@xxxxxxxxxxxxxxxxxxx
Unsubscribe : https://launchpad.net/~mudlet-makers
More help   : https://help.launchpad.net/ListHelp

-- 
mudlet crashes with wormud.org
https://bugs.launchpad.net/bugs/645129
You received this bug notification because you are a member of Mudlet
Makers, which is subscribed to Mudlet.

Status in Mudlet the MUD client: New

Bug description:
Mudlet crashes shortly after connecting to wotmud.org, with a QList index out of range error.  I have traced it to line 2255 of TBuffer.cpp - it seems that promptList is not necessarily the same size as tempList.  The error can be removed by replacing that line with:
	if( promptList.size() >= 1 )
	{
            promptBuffer.push_back( promptList[i] );
	}
	else
	{
	    promptBuffer.push_back( false );
	}
 but this might have ramifications of which I am not aware, so I do not want to propose it as a solution.





Follow ups

References