[tor-commits] [tor/master] Add set_environment_variable_in_smartlist
nickm at torproject.org
nickm at torproject.org
Fri Feb 17 16:46:48 UTC 2012
commit d37a1ec8c678d80072c0299515547343bd1c8a07
Author: Robert Ransom <rransom.8774 at gmail.com>
Date: Sun Feb 12 21:17:11 2012 -0800
Add set_environment_variable_in_smartlist
---
src/common/util.c | 24 ++++++++++++++++++++++++
src/common/util.h | 5 +++++
2 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/src/common/util.c b/src/common/util.c
index 02a638e..c8af602 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -3853,6 +3853,30 @@ get_current_process_environment_variables(void)
return sl;
}
+/** For each string s in <b>env_vars</b> such that
+ * environment_variable_names_equal(s, <b>new_var</b>), remove it; if
+ * <b>free_p</b> is non-zero, call <b>free_old</b>(s). If
+ * <b>new_var</b> contains '=', insert it into <b>env_vars</b>. */
+void
+set_environment_variable_in_smartlist(struct smartlist_t *env_vars,
+ const char *new_var,
+ void (*free_old)(void*),
+ int free_p)
+{
+ SMARTLIST_FOREACH_BEGIN(env_vars, const char *, s) {
+ if (environment_variable_names_equal(s, new_var)) {
+ SMARTLIST_DEL_CURRENT(env_vars, s);
+ if (free_p) {
+ free_old((void *)s);
+ }
+ }
+ } SMARTLIST_FOREACH_END(s);
+
+ if (strchr(new_var, '=') != NULL) {
+ smartlist_add(env_vars, (void *)new_var);
+ }
+}
+
#ifdef _WIN32
/** Read from a handle <b>h</b> into <b>buf</b>, up to <b>count</b> bytes. If
* <b>hProcess</b> is NULL, the function will return immediately if there is
diff --git a/src/common/util.h b/src/common/util.h
index f485446..9d1baf0 100644
--- a/src/common/util.h
+++ b/src/common/util.h
@@ -396,6 +396,11 @@ void process_environment_free(process_environment_t *env);
struct smartlist_t *get_current_process_environment_variables(void);
+void set_environment_variable_in_smartlist(struct smartlist_t *env_vars,
+ const char *new_var,
+ void (*free_old)(void*),
+ int free_p);
+
/* Values of process_handle_t.status. PROCESS_STATUS_NOTRUNNING must be
* 0 because tor_check_port_forwarding depends on this being the initial
* statue of the static instance of process_handle_t */
More information about the tor-commits
mailing list