from gutsy qt, tools/qgvector.cpp:

QGVector::QGVector( uint size )··   ·   // create vectors with nullptrs
{
    len = size;
    numItems = 0;
    if ( len == 0 ) {·  ·   ·   ·   // zero length
·   vec = 0;
·   return;
    }
    vec = NEW(Item,len);
    Q_CHECK_PTR( vec );  // this is line 176
    memset( (void*)vec, 0, len*sizeof(Item) );· // fill with nulls
}

-- 
Python crashes after attaching pty to a konsole kpart
https://bugs.launchpad.net/bugs/117731
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to