Fix how Queue/QueueItem weak pointers are initialized in the ctors.

llvm-svn: 197541
This commit is contained in:
Jason Molenda
2013-12-18 00:58:23 +00:00
parent 1b30b593ba
commit b97f44d9ef
3 changed files with 6 additions and 3 deletions

View File

@@ -38,12 +38,13 @@ namespace lldb_private
}
QueueImpl (const lldb::QueueSP &queue_sp) :
m_queue_wp(queue_sp),
m_queue_wp(),
m_threads(),
m_thread_list_fetched(false),
m_items(),
m_queue_items_fetched(false)
{
m_queue_wp = queue_sp;
}
QueueImpl (const QueueImpl &rhs)