OpenJDK / jdk / hs
changeset 46559:18f2673beac8
Merge
author | kbarrett |
---|---|
date | Thu, 22 Jun 2017 23:39:18 +0000 |
parents | eb30f7891bae 13de3946d61e |
children | 8ad8a9d89965 |
files | |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/os/posix/vm/os_posix.cpp Thu Jun 22 15:26:34 2017 -0700 +++ b/hotspot/src/os/posix/vm/os_posix.cpp Thu Jun 22 23:39:18 2017 +0000 @@ -760,6 +760,7 @@ #else // Use sigaddset to check for signal validity. sigset_t set; + sigemptyset(&set); if (sigaddset(&set, sig) == -1 && errno == EINVAL) { return false; }