summaryrefslogtreecommitdiff
path: root/win32/ioutil.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-02-19 16:09:37 +0100
committerAnatol Belski <ab@php.net>2018-02-19 17:43:48 +0100
commit668a6d329cebab961792c4fb2842f6b8c8baf1ee (patch)
tree8019c0fe6477505deb9cdfbf7c89f6c6e904b89f /win32/ioutil.c
parent050d62484be5d90c580e0dec8b61e9ed9cce2853 (diff)
downloadphp-git-668a6d329cebab961792c4fb2842f6b8c8baf1ee.tar.gz
Reduce var scope
Diffstat (limited to 'win32/ioutil.c')
-rw-r--r--win32/ioutil.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/win32/ioutil.c b/win32/ioutil.c
index d73afe7bbd..932b4a2fbc 100644
--- a/win32/ioutil.c
+++ b/win32/ioutil.c
@@ -340,7 +340,6 @@ PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode)
PW32IO int php_win32_ioutil_unlink_w(const wchar_t *path)
{/*{{{*/
- int ret = 0;
DWORD err = 0;
HANDLE h;
BY_HANDLE_FILE_INFORMATION info;
@@ -413,12 +412,11 @@ PW32IO int php_win32_ioutil_unlink_w(const wchar_t *path)
PW32IO int php_win32_ioutil_rmdir_w(const wchar_t *path)
{/*{{{*/
int ret = 0;
- DWORD err = 0;
PHP_WIN32_IOUTIL_CHECK_PATH_W(path, -1, 0)
if (!RemoveDirectoryW(path)) {
- err = GetLastError();
+ DWORD err = GetLastError();
ret = -1;
SET_ERRNO_FROM_WIN32_CODE(err);
}
@@ -429,10 +427,9 @@ PW32IO int php_win32_ioutil_rmdir_w(const wchar_t *path)
PW32IO int php_win32_ioutil_chdir_w(const wchar_t *path)
{/*{{{*/
int ret = 0;
- DWORD err = 0;
if (!SetCurrentDirectoryW(path)) {
- err = GetLastError();
+ DWORD err = GetLastError();
ret = -1;
SET_ERRNO_FROM_WIN32_CODE(err);
}
@@ -443,14 +440,13 @@ PW32IO int php_win32_ioutil_chdir_w(const wchar_t *path)
PW32IO int php_win32_ioutil_rename_w(const wchar_t *oldname, const wchar_t *newname)
{/*{{{*/
int ret = 0;
- DWORD err = 0;
PHP_WIN32_IOUTIL_CHECK_PATH_W(oldname, -1, 0)
PHP_WIN32_IOUTIL_CHECK_PATH_W(newname, -1, 0)
if (!MoveFileExW(oldname, newname, MOVEFILE_REPLACE_EXISTING|MOVEFILE_COPY_ALLOWED)) {
- err = GetLastError();
+ DWORD err = GetLastError();
ret = -1;
SET_ERRNO_FROM_WIN32_CODE(err);
}
@@ -640,7 +636,7 @@ BOOL php_win32_ioutil_init(void)
PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode)
{/*{{{*/
- DWORD attr, err;
+ DWORD attr;
if ((mode & X_OK) == X_OK) {
DWORD type;
@@ -649,7 +645,7 @@ PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode)
attr = GetFileAttributesW(path);
if (attr == INVALID_FILE_ATTRIBUTES) {
- err = GetLastError();
+ DWORD err = GetLastError();
SET_ERRNO_FROM_WIN32_CODE(err);
return -1;
}