Kaydet (Commit) 8e1e27ae authored tarafından Michael Meeks's avatar Michael Meeks

cups: initialize thread running member

Change-Id: Idf8b079857638558075fa6b1fb5f7ea6b3c9f632
üst 6751cf50
......@@ -47,7 +47,7 @@ struct FPtrHash
class CUPSManager : public PrinterInfoManager
{
boost::unordered_map< FILE*, rtl::OString, FPtrHash > m_aSpoolFiles;
boost::unordered_map< FILE*, rtl::OString, FPtrHash > m_aSpoolFiles;
int m_nDests;
void* m_pDests;
bool m_bNewDests;
......
......@@ -193,7 +193,8 @@ CUPSManager::CUPSManager() :
PrinterInfoManager( CUPS ),
m_nDests( 0 ),
m_pDests( NULL ),
m_bNewDests( false )
m_bNewDests( false ),
m_bPPDThreadRunning( false )
{
m_aDestThread = osl_createThread( run_dest_thread_stub, this );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment