summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 9179656b76..124df01385 100644
--- a/hash.c
+++ b/hash.c
@@ -14,6 +14,7 @@
#include "ruby/ruby.h"
#include "ruby/st.h"
#include "ruby/util.h"
+#include <errno.h>
#ifdef __APPLE__
#include <crt_externs.h>
@@ -2056,7 +2057,7 @@ ruby_setenv(const char *name, const char *value)
putenv(buf);
/* putenv() doesn't handle empty value */
- if (*value)
+ if (!*value)
SetEnvironmentVariable(name,value);
}
else {