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

Unified Diff: dbus_service.cc

Issue 4097004: Use g_strdup() instead of strdup(). (Closed) Base URL: http://git.chromium.org/git/update_engine.git
Patch Set: Created 10 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus_service.cc
diff --git a/dbus_service.cc b/dbus_service.cc
index a27fd1892b260fe26b862b65a67c840b3c640154..5a1a1056e3dbd57fb828c9aade3616a7d2320e03 100644
--- a/dbus_service.cc
+++ b/dbus_service.cc
@@ -90,8 +90,8 @@ gboolean update_engine_service_get_status(UpdateEngineService* self,
&new_version_str,
new_size));
- *current_operation = strdup(current_op.c_str());
- *new_version = strdup(new_version_str.c_str());
+ *current_operation = g_strdup(current_op.c_str());
+ *new_version = g_strdup(new_version_str.c_str());
if (!(*current_operation && *new_version)) {
*error = NULL;
return FALSE;
@@ -104,7 +104,7 @@ gboolean update_engine_service_get_track(UpdateEngineService* self,
GError **error) {
string track_str =
chromeos_update_engine::OmahaRequestDeviceParams::GetDeviceTrack();
- *track = strdup(track_str.c_str());
+ *track = g_strdup(track_str.c_str());
return TRUE;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698