aboutsummaryrefslogblamecommitdiffstats
path: root/putenv.c
blob: ad9189f4b692cb3c73b45fe96558ff1a5effb8fc (plain) (tree)
1
2
3
4



                                                         



















                                                                       



















                                                                       
                                      


                                                        
/* See LICENSE file for copyright and license details. */
#include "internal.h"


void
liberror_putenv_failed(char *string)
{
	const char *desc;
	if (!string) {
		errno = EINVAL;
		desc = "Environment string is NULL";
	} else if (*string == '=') {
		errno = EINVAL;
		desc = "Environment variable name is the empty string";
	} else if (!strchr(string, '=')) {
		errno = EINVAL;
		desc = "Environment does not contain an '=' symbol";
	} else {
		desc = "";
	}
	liberror_set_error_errno(desc, "putenv", errno);
}


int
liberror_putenv(char *string)
{
	const char *desc = "";
	if (!string) {
		errno = EINVAL;
		desc = "Environment string is NULL";
		goto error;
	} else if (*string == '=') {
		errno = EINVAL;
		desc = "Environment variable name is the empty string";
		goto error;
	} else if (!strchr(string, '=')) {
		errno = EINVAL;
		desc = "Environment does not contain an '=' symbol";
		goto error;
	} else if (!putenv(string)) {
		return 0;
	}
error:
	liberror_save_backtrace(NULL);
	liberror_set_error_errno(desc, "putenv", errno);
	return -1;
}