aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/file.c1
-rw-r--r--win32/win32.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/win32/file.c b/win32/file.c
index 85aea15d71..3b18a36348 100644
--- a/win32/file.c
+++ b/win32/file.c
@@ -697,6 +697,7 @@ rb_readlink(VALUE path, rb_encoding *resultenc)
enc = resultenc;
cp = path_cp = code_page(enc);
if (cp == INVALID_CODE_PAGE) cp = CP_UTF8;
+ len = lstrlenW(wbuf);
str = append_wstr(rb_enc_str_new(0, 0, enc), wbuf, len, cp, path_cp, enc);
ALLOCV_END(wtmp);
return str;
diff --git a/win32/win32.c b/win32/win32.c
index 35fe5a8557..47408e0375 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4888,6 +4888,7 @@ w32_readlink(UINT cp, const char *path, char *buf, size_t bufsize)
errno = map_errno(e);
return -1;
}
+ len = lstrlenW(wname) + 1;
ret = WideCharToMultiByte(cp, 0, wname, len, buf, bufsize, NULL, NULL);
ALLOCV_END(wtmp);
if (e) {