[gnome-software/wip/temp/ubuntu-xenial-rebased-corrected: 231/331] Guard against self-setting origin



commit bfb01d6aad139018d163df84560c2e85a1009752
Author: William Hua <william hua canonical com>
Date:   Thu Apr 14 01:17:04 2016 -0400

    Guard against self-setting origin

 src/gs-app.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/src/gs-app.c b/src/gs-app.c
index b7ce80b..a37a01f 100644
--- a/src/gs-app.c
+++ b/src/gs-app.c
@@ -1548,8 +1548,11 @@ void
 gs_app_set_origin (GsApp *app, const gchar *origin)
 {
        g_return_if_fail (GS_IS_APP (app));
-       g_free (app->origin);
-       app->origin = g_strdup (origin);
+
+       if (origin != app->origin) {
+               g_free (app->origin);
+               app->origin = g_strdup (origin);
+       }
 }
 
 /**


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]