projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
0cae909
)
Fix unputenv() on Windows.
author
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 5 Jul 2015 14:03:22 +0000
(16:03 +0200)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Sun, 5 Jul 2015 14:03:22 +0000
(16:03 +0200)
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index
a670368
..
2f10bfd
100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-359,23
+359,24
@@
void unputenv(char *p) {
len++;
#endif
#endif
len++;
#endif
#endif
- char var[len];
- strncpy(var, p, len);
+ char var[len + 1];
+ memcpy(var, p, len);
+ var[len] = 0;
#ifdef HAVE_UNSETENV
unsetenv(var);
#else
// We must keep what we putenv() around in memory.
// To do this without memory leaks, keep things in a list and reuse if possible.
static list_t list = {};
#ifdef HAVE_UNSETENV
unsetenv(var);
#else
// We must keep what we putenv() around in memory.
// To do this without memory leaks, keep things in a list and reuse if possible.
static list_t list = {};
- for(list_node_t *node = list
->head; node; node++
) {
+ for(list_node_t *node = list
.head; node; node = node->next
) {
char *data = node->data;
if(!strcmp(data, var)) {
putenv(data);
return;
}
}
char *data = node->data;
if(!strcmp(data, var)) {
putenv(data);
return;
}
}
- char *data =
strcm
p(var);
- list_insert_tail(list, data);
+ char *data =
xstrdu
p(var);
+ list_insert_tail(
&
list, data);
putenv(data);
#endif
}
putenv(data);
#endif
}