diff options
Diffstat (limited to 'lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp')
-rw-r--r-- | lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp b/lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp index cd253704e2d..afc09e180b6 100644 --- a/lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp +++ b/lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp @@ -84,7 +84,7 @@ CFCMutableSet::AddValue(const void *value, bool can_create) if (set == NULL) { if (can_create == false) - return false; + return NULL; set = ::CFSetCreateMutable(kCFAllocatorDefault, 0, &kCFTypeSetCallBacks); reset ( set ); } |