Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: util/mac/launchd.mm

Issue 1565873002: Update mini_chromium to a43fee120b10ed71df4e55a370948ca461d78232 (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | util/mac/launchd_test.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mac/launchd.mm
diff --git a/util/mac/launchd.mm b/util/mac/launchd.mm
index 1b723555695f5b00a51aba706b485fdd4cb55d85..ef5a6061a88373885a452946332f3eb6fccf8326 100644
--- a/util/mac/launchd.mm
+++ b/util/mac/launchd.mm
@@ -51,7 +51,8 @@ launch_data_t CFPropertyToLaunchData(CFPropertyListRef property_cf) {
return nullptr;
}
- LaunchDataDictInsert(dictionary_launch, value_launch, [key UTF8String]);
+ LaunchDataDictInsert(
+ dictionary_launch.get(), value_launch, [key UTF8String]);
}
data_launch = dictionary_launch.release();
@@ -71,7 +72,7 @@ launch_data_t CFPropertyToLaunchData(CFPropertyListRef property_cf) {
return nullptr;
}
- LaunchDataArraySetIndex(array_launch, element_launch, index++);
+ LaunchDataArraySetIndex(array_launch.get(), element_launch, index++);
}
data_launch = array_launch.release();
« no previous file with comments | « DEPS ('k') | util/mac/launchd_test.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698