X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fscript.c;h=cb3d29345e9bb49b18c1de4a045710e396036076;hb=344c632c7a9f8047a412239dcd22ba1531bdfda5;hp=81216a3ab043585b04733308442f4a7809a13440;hpb=f6e87ab476a0faf8b124ecaaa27f967d825e6457;p=tinc diff --git a/src/script.c b/src/script.c index 81216a3a..cb3d2934 100644 --- a/src/script.c +++ b/src/script.c @@ -1,7 +1,7 @@ /* script.c -- call an external script Copyright (C) 1999-2005 Ivo Timmermans, - 2000-2017 Guus Sliepen + 2000-2022 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ static void unputenv(const char *p) { return; } - int len = e - p; + ptrdiff_t len = e - p; #ifndef HAVE_UNSETENV #ifdef HAVE_MINGW // Windows requires putenv("FOO=") to unset %FOO% @@ -50,7 +50,7 @@ static void unputenv(const char *p) { #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 = {}; + static list_t list = {0}; for list_each(char, data, &list) { if(!strcmp(data, var)) { @@ -80,7 +80,12 @@ int environment_add(environment_t *env, const char *format, ...) { if(format) { va_list ap; va_start(ap, format); - vasprintf(&env->entries[env->n], format, ap); + + if(vasprintf(&env->entries[env->n], format, ap) == -1) { + // Assume we are out of memory. + abort(); + } + va_end(ap); } else { env->entries[env->n] = NULL; @@ -93,7 +98,11 @@ void environment_update(environment_t *env, int pos, const char *format, ...) { free(env->entries[pos]); va_list ap; va_start(ap, format); - vasprintf(&env->entries[pos], format, ap); + + if(vasprintf(&env->entries[pos], format, ap) == -1) { + abort(); + } + va_end(ap); } @@ -142,7 +151,12 @@ bool execute_script(const char *name, environment_t *env) { #ifdef HAVE_MINGW if(!*scriptextension) { - const char *pathext = getenv("PATHEXT") ? : ".COM;.EXE;.BAT;.CMD"; + const char *pathext = getenv("PATHEXT"); + + if(!pathext) { + pathext = ".COM;.EXE;.BAT;.CMD"; + } + size_t pathlen = strlen(pathext); size_t scriptlen = strlen(scriptname); char fullname[scriptlen + pathlen + 1];