new_environ 132 sapi/cli/ps_title.c static char** frozen_environ, **new_environ; new_environ 185 sapi/cli/ps_title.c new_environ = (char **) malloc((i + 1) * sizeof(char *)); new_environ 187 sapi/cli/ps_title.c if (!new_environ || !frozen_environ) new_environ 191 sapi/cli/ps_title.c new_environ[i] = strdup(environ[i]); new_environ 192 sapi/cli/ps_title.c if (!new_environ[i]) new_environ 195 sapi/cli/ps_title.c new_environ[i] = NULL; new_environ 196 sapi/cli/ps_title.c environ = new_environ; new_environ 197 sapi/cli/ps_title.c memcpy((char *)frozen_environ, (char *)new_environ, sizeof(char *) * (i + 1)); new_environ 418 sapi/cli/ps_title.c free(new_environ); new_environ 252 sapi/fpm/fpm/fpm_env.c char **new_environ; new_environ 259 sapi/fpm/fpm/fpm_env.c if ((new_environ = malloc((1U + env_nb) * sizeof (char *))) == NULL) { new_environ 262 sapi/fpm/fpm/fpm_env.c new_environ[env_nb] = NULL; new_environ 265 sapi/fpm/fpm/fpm_env.c new_environ[env_nb] = strdup(environ[env_nb]); new_environ 267 sapi/fpm/fpm/fpm_env.c environ = new_environ;