[Lldb-commits] [PATCH] D45011: Prevent double release of mach ports

Frederic Riss via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 28 20:53:30 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL328761: Prevent double release of mach ports (authored by friss, committed by ).
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

https://reviews.llvm.org/D45011

Files:
  lldb/trunk/source/Plugins/Process/Darwin/MachException.cpp
  lldb/trunk/tools/debugserver/source/MacOSX/MachException.cpp


Index: lldb/trunk/source/Plugins/Process/Darwin/MachException.cpp
===================================================================
--- lldb/trunk/source/Plugins/Process/Darwin/MachException.cpp
+++ lldb/trunk/source/Plugins/Process/Darwin/MachException.cpp
@@ -92,8 +92,6 @@
                 (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD),
                 (uint64_t)(exc_data_count > 1 ? exc_data[1] : 0xBADDBADD));
   }
-  mach_port_deallocate(mach_task_self(), task_port);
-  mach_port_deallocate(mach_task_self(), thread_port);
 
   return KERN_FAILURE;
 }
Index: lldb/trunk/tools/debugserver/source/MacOSX/MachException.cpp
===================================================================
--- lldb/trunk/tools/debugserver/source/MacOSX/MachException.cpp
+++ lldb/trunk/tools/debugserver/source/MacOSX/MachException.cpp
@@ -86,8 +86,6 @@
                    (uint64_t)(exc_data_count > 0 ? exc_data[0] : 0xBADDBADD),
                    (uint64_t)(exc_data_count > 1 ? exc_data[1] : 0xBADDBADD));
   }
-  mach_port_deallocate(mach_task_self(), task_port);
-  mach_port_deallocate(mach_task_self(), thread_port);
 
   return KERN_FAILURE;
 }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D45011.140187.patch
Type: text/x-patch
Size: 1162 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20180329/47662e89/attachment.bin>


More information about the lldb-commits mailing list