aboutsummaryrefslogtreecommitdiffstats
path: root/putenv.c
diff options
context:
space:
mode:
Diffstat (limited to 'putenv.c')
-rw-r--r--putenv.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/putenv.c b/putenv.c
index 18cf2cf..ad9189f 100644
--- a/putenv.c
+++ b/putenv.c
@@ -2,6 +2,26 @@
#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)
{