Clear the section list when a our current process is destroyed.

Add missing files that I forgot to checkin.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@113902 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Target.cpp b/source/Target/Target.cpp
index 7d8eb8b..7d91f1e 100644
--- a/source/Target/Target.cpp
+++ b/source/Target/Target.cpp
@@ -82,6 +82,7 @@
 {
     if (m_process_sp.get())
     {
+        m_section_load_list.Clear();
         if (m_process_sp->IsAlive())
             m_process_sp->Destroy();
         else