Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2209156 | 7 | Dmitriy Samersoff | P4 | Closed | Fixed | b139 |
Valgrind reports small memory leak in get_stack_bounds // os::create_stack_guard_pages.
The reason there is leak is that getline() may return -1 and still allocate memory in str:
ssize_t len = getline(&str, &dummy, f);
if (len == -1) {
fclose(f);
return false;
The reason there is leak is that getline() may return -1 and still allocate memory in str:
ssize_t len = getline(&str, &dummy, f);
if (len == -1) {
fclose(f);
return false;
- backported by
-
JDK-2209156 Small memory leak in get_stack_bounds // os::create_stack_guard_pages
-
- Closed
-
- relates to
-
JDK-6929067 Stack guard pages should be removed when thread is detached
-
- Closed
-
-
JDK-8009062 poor performance of JNI AttachCurrentThread after fix for 7017193
-
- Closed
-