diff options
-rw-r--r-- | lldb/source/Host/macosx/Host.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/macosx/Host.mm b/lldb/source/Host/macosx/Host.mm index 01231ce2792..c1b8f6e1865 100644 --- a/lldb/source/Host/macosx/Host.mm +++ b/lldb/source/Host/macosx/Host.mm @@ -1410,7 +1410,7 @@ HostThread Host::StartMonitoringChildProcess( if (source) { Host::MonitorChildProcessCallback callback_copy = callback; ::dispatch_source_set_cancel_handler(source, ^{ - ::dispatch_release(source); + dispatch_release(source); }); ::dispatch_source_set_event_handler(source, ^{ |