summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--win32/file.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/win32/file.c b/win32/file.c
index c9dd8b49a7..407824906a 100644
--- a/win32/file.c
+++ b/win32/file.c
@@ -37,9 +37,6 @@ convert_mb_to_wchar(const char *str, wchar_t **wstr, size_t *wstr_len, UINT code
{
size_t len;
- if (!str)
- return;
-
len = MultiByteToWideChar(code_page, 0, str, -1, NULL, 0) + 1;
*wstr = (wchar_t *)xmalloc(len * sizeof(wchar_t));