Re: Runs runs runs


Subject: Re: Runs runs runs
From: Mike Nordell (tamlin@algonet.se)
Date: Sun May 07 2000 - 01:57:29 CDT


Don't apply the patch for fp_Run::unlinkFromRunList(). Replace it with
the following.

void fp_Run::unlinkFromRunList()
{
    if (m_pPrev)
    {
        m_pPrev->m_pNext = m_pNext;
    }
    if (m_pNext)
    {
        m_pNext->m_pPrev = m_pPrev;
        m_pNext = 0;
    }
    m_pPrev = 0;
}



This archive was generated by hypermail 2b25 : Sun May 07 2000 - 00:58:20 CDT