# HG changeset patch # User clanger # Date 1570451564 -3600 # Node ID b1da055915efc77b83ac157bb2cc77de4715e7ba # Parent bada0782842ae3110fff30715ca127a4004cc6f0 8231885: Fix/remove malformed assert in os_windows.cpp Reviewed-by: dcubed, stuefe, kbarrett diff -r bada0782842a -r b1da055915ef src/hotspot/os/windows/os_windows.cpp --- a/src/hotspot/os/windows/os_windows.cpp Wed Oct 02 17:32:08 2019 +0200 +++ b/src/hotspot/os/windows/os_windows.cpp Mon Oct 07 13:32:44 2019 +0100 @@ -4189,8 +4189,6 @@ if (::isalpha(buf[0]) && !::IsDBCSLeadByte(buf[0]) && buf[1] == ':' && buf[2] == '\\') { prefix = L"\\\\?\\"; } else if (buf[0] == '\\' && buf[1] == '\\') { - assert(buf[2] != '\\'); - if (buf[2] == '?' && buf[3] == '\\') { prefix = L""; needs_fullpath = false;