[gnome-software/wip/rancell/ubuntu-3-20-rebase: 1/17] Guard against self-setting origin



commit d6430e193d0040148587be6227adcef36e5055ed
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 5aa48b4..0b0af6e 100644
--- a/src/gs-app.c
+++ b/src/gs-app.c
@@ -1477,8 +1477,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]