[epiphany] ephy-profile-utils: don't replace environment when spwaning ephy-profile-migrator
- From: Stefano Facchini <sfacchini src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [epiphany] ephy-profile-utils: don't replace environment when spwaning ephy-profile-migrator
- Date: Fri, 7 Sep 2012 08:04:36 +0000 (UTC)
commit adfecc2bb03ed280543dc5ad4ba6fa350ff00d8c
Author: Stefano Facchini <stefano facchini gmail com>
Date: Thu Sep 6 23:15:08 2012 +0200
ephy-profile-utils: don't replace environment when spwaning ephy-profile-migrator
Instead, just append the new variable to the existing environment.
https://bugzilla.gnome.org/show_bug.cgi?id=683538
lib/ephy-profile-utils.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
---
diff --git a/lib/ephy-profile-utils.c b/lib/ephy-profile-utils.c
index 51dd7e1..2c685e0 100644
--- a/lib/ephy-profile-utils.c
+++ b/lib/ephy-profile-utils.c
@@ -208,7 +208,11 @@ ephy_profile_utils_do_migration (const char *profile_directory, int test_to_run,
int status;
char *argv[6] = { EPHY_PROFILE_MIGRATOR, "-v" };
int i = 2; /* index for argv, start filling at 2. */
- char *envp[1] = { "EPHY_LOG_MODULES=ephy-profile" };
+ char **envp;
+
+ envp = g_environ_setenv (g_get_environ (),
+ "EPHY_LOG_MODULES", "ephy-profile",
+ TRUE);
argv[i++] = version = g_strdup_printf ("%d", EPHY_PROFILE_MIGRATION_VERSION);
@@ -234,6 +238,7 @@ ephy_profile_utils_do_migration (const char *profile_directory, int test_to_run,
&status, &error);
g_free (index);
g_free (version);
+ g_strfreev (envp);
if (error) {
LOG ("Failed to run migrator: %s", error->message);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]