Skip to content

Commit

Permalink
8281525: Enable Zc:strictStrings flag in Visual Studio build
Browse files Browse the repository at this point in the history
Reviewed-by: dholmes, ihse
  • Loading branch information
djelinski authored and dfuch committed Feb 24, 2022
1 parent 20e78f7 commit 23995f8
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions make/autoconf/flags-cflags.m4
Expand Up @@ -496,8 +496,8 @@ AC_DEFUN([FLAGS_SETUP_CFLAGS_HELPER],
TOOLCHAIN_CFLAGS_JVM="-qtbtable=full -qtune=balanced \
-qalias=noansi -qstrict -qtls=default -qnortti -qnoeh -qignerrno -qstackprotect"
elif test "x$TOOLCHAIN_TYPE" = xmicrosoft; then
TOOLCHAIN_CFLAGS_JVM="-nologo -MD -MP"
TOOLCHAIN_CFLAGS_JDK="-nologo -MD -Zc:wchar_t-"
TOOLCHAIN_CFLAGS_JVM="-nologo -MD -Zc:strictStrings -MP"
TOOLCHAIN_CFLAGS_JDK="-nologo -MD -Zc:strictStrings -Zc:wchar_t-"
fi
# CFLAGS C language level for JDK sources (hotspot only uses C++)
Expand Down
4 changes: 2 additions & 2 deletions src/hotspot/os/windows/os_windows.cpp
Expand Up @@ -4458,7 +4458,7 @@ static errno_t get_full_path(LPCWSTR unicode_path, LPWSTR* full_path) {
return ERROR_SUCCESS;
}

static void set_path_prefix(char* buf, LPWSTR* prefix, int* prefix_off, bool* needs_fullpath) {
static void set_path_prefix(char* buf, LPCWSTR* prefix, int* prefix_off, bool* needs_fullpath) {
*prefix_off = 0;
*needs_fullpath = true;

Expand Down Expand Up @@ -4494,7 +4494,7 @@ static wchar_t* wide_abs_unc_path(char const* path, errno_t & err, int additiona
strncpy(buf, path, buf_len);
os::native_path(buf);

LPWSTR prefix = NULL;
LPCWSTR prefix = NULL;
int prefix_off = 0;
bool needs_fullpath = true;
set_path_prefix(buf, &prefix, &prefix_off, &needs_fullpath);
Expand Down
10 changes: 5 additions & 5 deletions src/java.security.jgss/windows/native/libsspi_bridge/sspi.cpp
Expand Up @@ -139,7 +139,7 @@ seconds_until(int inputIsUTC, TimeStamp *time)
}

static void
show_time(char* label, TimeStamp* ts)
show_time(const char* label, TimeStamp* ts)
{
if (trace) {
SYSTEMTIME stLocal;
Expand Down Expand Up @@ -286,7 +286,7 @@ get_full_name(WCHAR* input)
}

// Always use the default domain
WCHAR* realm = _wgetenv(L"USERDNSDOMAIN");
const WCHAR* realm = _wgetenv(L"USERDNSDOMAIN");
if (realm == NULL) {
realm = L"";
}
Expand Down Expand Up @@ -653,7 +653,7 @@ gss_acquire_cred(OM_uint32 *minor_status,
}
ss = AcquireCredentialsHandle(
NULL,
L"Kerberos",
(LPWSTR)L"Kerberos",
cred_usage == 0 ? SECPKG_CRED_BOTH :
(cred_usage == 1 ? SECPKG_CRED_OUTBOUND : SECPKG_CRED_INBOUND),
NULL,
Expand Down Expand Up @@ -683,7 +683,7 @@ gss_acquire_cred(OM_uint32 *minor_status,
auth.PackageListLength = 8;
ss = AcquireCredentialsHandle(
NULL,
L"Negotiate",
(LPWSTR)L"Negotiate",
cred_usage == 0 ? SECPKG_CRED_BOTH :
(cred_usage == 1 ? SECPKG_CRED_OUTBOUND : SECPKG_CRED_INBOUND),
NULL,
Expand Down Expand Up @@ -945,7 +945,7 @@ gss_init_sec_context(OM_uint32 *minor_status,
auth.PackageListLength = 8;
ss = AcquireCredentialsHandle(
NULL,
isSPNEGO ? L"Negotiate" : L"Kerberos",
(LPWSTR)(isSPNEGO ? L"Negotiate" : L"Kerberos"),
SECPKG_CRED_OUTBOUND,
NULL,
isSPNEGO ? &auth : NULL,
Expand Down
Expand Up @@ -84,7 +84,7 @@ DEF_STATIC_JNI_OnLoad

void showProperty(NCRYPT_HANDLE hKey);

void dump(LPSTR title, PBYTE data, DWORD len)
void dump(LPCSTR title, PBYTE data, DWORD len)
{
if (trace) {
printf("==== %s ====\n", title);
Expand Down Expand Up @@ -533,7 +533,7 @@ JNIEXPORT void JNICALL Java_sun_security_mscapi_CKeyStore_loadKeysOrCertificateC
// Build certificate chain by using system certificate store.
// Add cert chain into collection for any key usage.
//
if (GetCertificateChain(OID_EKU_ANY, pCertContext, &pCertChainContext))
if (GetCertificateChain((LPSTR)OID_EKU_ANY, pCertContext, &pCertChainContext))
{
for (DWORD i = 0; i < pCertChainContext->cChain; i++)
{
Expand Down Expand Up @@ -1267,7 +1267,7 @@ void showProperty(NCRYPT_HANDLE hKey) {
BCryptBuffer bb;
bb.BufferType = NCRYPTBUFFER_PKCS_SECRET;
bb.cbBuffer = 18;
bb.pvBuffer = L"changeit";
bb.pvBuffer = (LPWSTR)L"changeit";
BCryptBufferDesc bbd;
bbd.ulVersion = 0;
bbd.cBuffers = 1;
Expand Down
Expand Up @@ -59,7 +59,7 @@ extern "C" {
DWORD cchSize = 0;

UINT result = MsiGetProperty(hInstall, TEXT("INSTALLDIR"),
TEXT(""), &cchSize);
(LPTSTR)TEXT(""), &cchSize);
if (result == ERROR_MORE_DATA) {
cchSize = cchSize + 1; // NULL termination
szValue = new TCHAR[cchSize];
Expand Down
20 changes: 10 additions & 10 deletions test/hotspot/gtest/runtime/test_os_windows.cpp
Expand Up @@ -177,7 +177,7 @@ static void delete_rel_file_w(const wchar_t* path) {
EXPECT_TRUE(result) << "Failed to delete file \"" << path << "\": " << GetLastError();
}

static bool convert_to_cstring(char* c_str, size_t size, wchar_t* w_str) {
static bool convert_to_cstring(char* c_str, size_t size, const wchar_t* w_str) {
size_t converted;
errno_t err = wcstombs_s(&converted, c_str, size, w_str, size - 1);
EXPECT_EQ(err, ERROR_SUCCESS) << "Could not convert \"" << w_str << "\" to c-string";
Expand Down Expand Up @@ -307,7 +307,7 @@ static void check_file_impl(wchar_t* path) {
}
}

static void check_file_not_present_impl(wchar_t* path) {
static void check_file_not_present_impl(const wchar_t* path) {
char buf[JVM_MAXPATHLEN];

if (convert_to_cstring(buf, JVM_MAXPATHLEN, path)) {
Expand Down Expand Up @@ -361,7 +361,7 @@ static void check_file(wchar_t* path) {
}
}

static void check_file_not_present(wchar_t* path) {
static void check_file_not_present(const wchar_t* path) {
check_file_not_present_impl(path);

for (int i = 0; mods_filter != Allow_None && i < mods_per_path; ++i) {
Expand Down Expand Up @@ -455,7 +455,7 @@ static void bench_path(wchar_t* path) {
}
}

static void print_attr_result_for_path(wchar_t* path) {
static void print_attr_result_for_path(const wchar_t* path) {
WIN32_FILE_ATTRIBUTE_DATA file_data;
struct stat st;
char buf[JVM_MAXPATHLEN];
Expand All @@ -476,7 +476,7 @@ static void print_attr_result_for_path(wchar_t* path) {
}
}

static void print_attr_result(wchar_t* format, ...) {
static void print_attr_result(const wchar_t* format, ...) {
va_list argptr;
wchar_t buf[JVM_MAXPATHLEN];

Expand Down Expand Up @@ -513,10 +513,10 @@ TEST_VM(os_windows, handle_long_paths) {
static wchar_t root_dir_path[JVM_MAXPATHLEN];
static wchar_t root_rel_dir_path[JVM_MAXPATHLEN];

wchar_t* dir_prefix = L"os_windows_long_paths_dir_";
wchar_t* empty_dir_name = L"empty_directory_with_long_path";
wchar_t* not_empty_dir_name = L"not_empty_directory_with_long_path";
wchar_t* file_name = L"file";
const wchar_t* dir_prefix = L"os_windows_long_paths_dir_";
const wchar_t* empty_dir_name = L"empty_directory_with_long_path";
const wchar_t* not_empty_dir_name = L"not_empty_directory_with_long_path";
const wchar_t* file_name = L"file";
wchar_t dir_letter;
WIN32_FILE_ATTRIBUTE_DATA file_data;
bool can_test_unc = false;
Expand Down Expand Up @@ -683,7 +683,7 @@ TEST_VM(os_windows, handle_long_paths) {
// The other drive letter should not overwrite the original one.
if (dir_letter) {
static wchar_t tmp[JVM_MAXPATHLEN];
wchar_t* other_letter = dir_letter == L'D' ? L"C" : L"D";
const wchar_t* other_letter = dir_letter == L'D' ? L"C" : L"D";
wsprintfW(tmp, L"%2ls\\..\\%ls:%ls", nearly_long_file_path, other_letter, nearly_long_file_path + 2);
check_file_not_present(tmp);
wsprintfW(tmp, L"%2ls\\..\\%ls:%ls", file_path, other_letter, file_path + 2);
Expand Down

1 comment on commit 23995f8

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.