# HG changeset patch # User ysuenaga # Date 1520955056 -32400 # Node ID 3875d7b926a82a95a3c17dd4287c9951c98b8769 # Parent 02e78f38e7d0312d23c53f1923921179085a790d 8199323: hsdis could not be loaded which are located on long path Reviewed-by: dholmes, stuefe diff -r 02e78f38e7d0 -r 3875d7b926a8 src/jdk.hotspot.agent/share/native/libsaproc/sadis.c --- a/src/jdk.hotspot.agent/share/native/libsaproc/sadis.c Tue Mar 13 11:29:30 2018 +0100 +++ b/src/jdk.hotspot.agent/share/native/libsaproc/sadis.c Wed Mar 14 00:30:56 2018 +0900 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -64,6 +64,14 @@ #include #ifdef _WINDOWS +#define JVM_MAXPATHLEN _MAX_PATH +#else +#include +#define JVM_MAXPATHLEN MAXPATHLEN +#endif + + +#ifdef _WINDOWS static int getLastErrorString(char *buf, size_t len) { long errval; @@ -112,7 +120,7 @@ const char *error_message = NULL; const char *jrepath = NULL; const char *libname = NULL; - char buffer[128]; + char buffer[JVM_MAXPATHLEN]; #ifdef _WINDOWS HINSTANCE hsdis_handle = (HINSTANCE) NULL;