]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
command: Change virCommandAddEnv so it replaces existing environment variables.
authorRichard W.M. Jones <rjones@redhat.com>
Mon, 24 Sep 2012 16:35:47 +0000 (17:35 +0100)
committerCole Robinson <crobinso@redhat.com>
Wed, 17 Oct 2012 16:19:46 +0000 (12:19 -0400)
(cherry picked from commit 2b32735af480055e27400068d27364d521071117)

src/util/command.c

index f7d92dd2932bcc3d47ef49175d62b5f48034a10f..1adf7b956fd7c3fae94d5a929c2d59458ceecba9 100644 (file)
@@ -985,11 +985,26 @@ virCommandNonblockingFDs(virCommandPtr cmd)
 }
 
 /* Add an environment variable to the cmd->env list.  'env' is a
- * string like "name=value".
+ * string like "name=value".  If the named environment variable is
+ * already set, then it is replaced in the list.
  */
 static inline void
 virCommandAddEnv(virCommandPtr cmd, char *env)
 {
+    size_t namelen;
+    size_t i;
+
+    /* Search for the name in the existing environment. */
+    namelen = strcspn(env, "=");
+    for (i = 0; i < cmd->nenv; ++i) {
+        /* + 1 because we want to match the '=' character too. */
+        if (STREQLEN(cmd->env[i], env, namelen + 1)) {
+            VIR_FREE(cmd->env[i]);
+            cmd->env[i] = env;
+            return;
+        }
+    }
+
     /* Arg plus trailing NULL. */
     if (VIR_RESIZE_N(cmd->env, cmd->maxenv, cmd->nenv, 1 + 1) < 0) {
         VIR_FREE(env);