diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-06-04 11:56:37 +0300 |
---|---|---|
committer | rl1987 <rl1987@sdf.lonestar.org> | 2018-06-04 11:56:37 +0300 |
commit | 39bbb8d9cfb0258b1e65dc98177e0773a19e4eb0 (patch) | |
tree | bcfc20429b6ddf247e002062203193d1dd769063 /src/common/util.c | |
parent | 3716ddf1b42270b5db76f8b7b458c5f61aa40e23 (diff) | |
download | tor-39bbb8d9cfb0258b1e65dc98177e0773a19e4eb0.tar.gz tor-39bbb8d9cfb0258b1e65dc98177e0773a19e4eb0.zip |
Avoid casting smartlist index implicitly
Diffstat (limited to 'src/common/util.c')
-rw-r--r-- | src/common/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/util.c b/src/common/util.c index 53e4507f1f..b0eb96306f 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -4813,7 +4813,7 @@ process_environment_make(struct smartlist_t *env_vars) total_env_length = 1; /* terminating NUL of terminating empty string */ for (i = 0; i < n_env_vars; ++i) { - const char *s = smartlist_get(env_vars, i); + const char *s = smartlist_get(env_vars, (int)i); size_t slen = strlen(s); tor_assert(slen + 1 != 0); @@ -4843,7 +4843,7 @@ process_environment_make(struct smartlist_t *env_vars) const char *prev_env_var = NULL; for (i = 0; i < n_env_vars; ++i) { - const char *s = smartlist_get(env_vars_sorted, i); + const char *s = smartlist_get(env_vars_sorted, (int)i); size_t slen = strlen(s); size_t s_name_len = str_num_before(s, '='); |