diff --git a/bootstrap_compiler/run.c b/bootstrap_compiler/run.c index b92dfe3c..983ba019 100644 --- a/bootstrap_compiler/run.c +++ b/bootstrap_compiler/run.c @@ -8,6 +8,7 @@ int run_exe(const char *exepath, bool valgrind) { char *command = malloc(strlen(exepath) + 1000); #ifdef _WIN32 + assert(!valgrind); sprintf(command, "\"%s\"", exepath); char *p; while ((p = strchr(command, '/')))