[Bug 70028] sound kmail notification crash

Waldo Bastian bastian at kde.org
Thu Mar 18 23:30:40 GMT 2004


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
      
http://bugs.kde.org/show_bug.cgi?id=70028      




------- Additional Comments From bastian kde org  2004-03-19 00:30 -------
Roman:
I'm concerned about the part that says:
	** (process:9157): CRITICAL **: file gslopmaster.c: line 248
	master_process_job): assertion `node->inputs[istream].src_node ==
 	NULL' failed
That suggests that something goes wrong before the disconnect already.
It looks like AudioPort gets connected twice, which is really not supposed to happen. (See also MultiPort)

Can someone who experiences this problem add assert(source == 0) to the top of void AudioPort::connect(Port *psource) like this:

void AudioPort::connect(Port *psource)
{
        assert(source == 0);
        source = psource->audioPort();
        assert(source);

Does it now crash on that assert? Can you post a backtrace?



More information about the kde-multimedia mailing list