From 7a4078ee340b7f15c839257d6fa895d92abe0224 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 28 Jun 2001 02:19:57 +0000 Subject: Change check_null_empty_path* to check_null_empty_str* throughout. * path.cc (path_conv::check): Add signal protection here since retrieving info about remote shares can take some time. * path.h (check_null_empty_str_errno): Convert to a function prototype. * path.cc (check_null_empty_str): Move to miscfuncs.cc. * miscfuncs.cc (check_null_empty_str_errno): New function. (__check_null_invalid_struct): Ditto. (__check_null_invalid_struct_errno): Ditto. (check_null_empty_str): Change from VirtualQuery to IsBadWritePtr. * thread.cc (check_valid_pointer): Ditto. * resource.cc (getrlimit): Use check_null_invalid_struct macro for checking validity of pointer. (setrlimit): Ditto. --- winsup/cygwin/environ.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/environ.cc') diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index 47de60a51..1135bfbba 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -290,7 +290,7 @@ extern "C" int putenv (const char *str) { int res; - if ((res = check_null_empty_path (str))) + if ((res = check_null_empty_str (str))) { if (res == ENOENT) return 0; @@ -312,12 +312,12 @@ extern "C" int setenv (const char *name, const char *value, int overwrite) { int res; - if ((res = check_null_empty_path (value)) == EFAULT) + if ((res = check_null_empty_str (value)) == EFAULT) { set_errno (res); return -1; } - if ((res = check_null_empty_path (name))) + if ((res = check_null_empty_str (name))) { if (res == ENOENT) return 0; -- cgit v1.2.3