Hello Guys, sometimes my server closes and send the message: Segment Fault
I installed gdb and i get this error:
anyone know why? :x
I'm using ubuntu 10.04 and tfs 0.3.6
This is the part of the source that occur the crash, what this mean ?
I installed gdb and i get this error:

Code:
uint8_t fromIndex = 0;
if(fromPos.x == 0xFFFF)
{
if(fromPos.y & 0x40)
{
fromIndex = static_cast<uint8_t>(fromPos.z);
fromItem = fromCylinder->getItem(); ///////////////////////////////////////////////////// line 1256 in game.cpp
if (fromItem)
{
fromPlayer = fromItem->getHoldingPlayer();
Item* parentFromItem = fromItem->getTopParent()->getItem();
if (fromItem->isDepot() || (parentFromItem && parentFromItem->isDepot()) )
fromDepot = true;
}
}
else
{
fromIndex = static_cast<uint8_t>(fromPos.y);
//custom move
deequip = true;
//
}
}
anyone know why? :x
I'm using ubuntu 10.04 and tfs 0.3.6
This is the part of the source that occur the crash, what this mean ?
Last edited: