diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2006-05-20 11:53:41 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2006-05-20 11:53:41 +0000 |
commit | 95ed1fd18df4fcc726c8fc371c79abb25d86106f (patch) | |
tree | 90b84bb761434a22547acf5037336ffcca4afb8c /rfb | |
parent | 2947916af4cdf45c2d744d9673769273b7089542 (diff) | |
download | tigervnc-95ed1fd18df4fcc726c8fc371c79abb25d86106f.tar.gz tigervnc-95ed1fd18df4fcc726c8fc371c79abb25d86106f.zip |
VNCServerST::m_pFTManager pointer did not get initialized properly on VNCServerST object creation. This fix solves x0vncserver crash on accepting client connections.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@568 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'rfb')
-rw-r--r-- | rfb/VNCServerST.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rfb/VNCServerST.cxx b/rfb/VNCServerST.cxx index 7e3e0c67..cc18faa3 100644 --- a/rfb/VNCServerST.cxx +++ b/rfb/VNCServerST.cxx @@ -72,7 +72,7 @@ static SSecurityFactoryStandard defaultSecurityFactory; VNCServerST::VNCServerST(const char* name_, SDesktop* desktop_, SSecurityFactory* sf) : blHosts(&blacklist), desktop(desktop_), desktopStarted(false), pb(0), - name(strDup(name_)), pointerClient(0), comparer(0), + m_pFTManager(0), name(strDup(name_)), pointerClient(0), comparer(0), renderedCursorInvalid(false), securityFactory(sf ? sf : &defaultSecurityFactory), queryConnectionHandler(0), keyRemapper(&KeyRemapper::defInstance), |