summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/win32/win32.c b/win32/win32.c
index c9081327f5..c4b6a124ab 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -1066,11 +1066,13 @@ CreateChild(const char *cmd, const char *prog, SECURITY_ATTRIBUTES *psa,
}
}
if (p) {
- shell = p;
- while (*p) {
- if ((unsigned char)*p == '/')
- *p = '\\';
- p = CharNext(p);
+ char *tmp = ALLOCA_N(char, strlen(p) + 1);
+ strcpy(tmp, p);
+ shell = tmp;
+ while (*tmp) {
+ if ((unsigned char)*tmp == '/')
+ *tmp = '\\';
+ tmp = CharNext(tmp);
}
}