[gnome-software/wip/iainl/ubuntu-xenial] Guard against self-setting origin
- From: William Hua <williamhua src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software/wip/iainl/ubuntu-xenial] Guard against self-setting origin
- Date: Thu, 14 Apr 2016 05:38:07 +0000 (UTC)
commit c9bcf92dc740ec5a31d108967f5d78cbf91b548e
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 44cd04e..dc2baa2 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]