speechd-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

crashes in the server


From: Chris Brannon
Subject: crashes in the server
Date: Sat, 31 Jul 2010 23:16:09 -0500

This little Python program causes Speech Dispatcher
to segfault, at least on my machine.

from speechd.client import SSIPClient
def crash():
    s1 = SSIPClient('foo')
    s1.speak('hi')
    s2 = SSIPClient('foo')
    s2.speak('there')
    s2.close()
    s1.speak('this is a test')
    s1.close()

crash()

I think that in some cases, a client's TFDSetElement is being removed
from fd_settings while the client is still connected to the server.

-- Chris



reply via email to

[Prev in Thread] Current Thread [Next in Thread]