aboutsummaryrefslogtreecommitdiff
path: root/src/share/vm/utilities/elfStringTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/vm/utilities/elfStringTable.cpp')
-rw-r--r--src/share/vm/utilities/elfStringTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/share/vm/utilities/elfStringTable.cpp b/src/share/vm/utilities/elfStringTable.cpp
index 89286cb18..cba67ddf6 100644
--- a/src/share/vm/utilities/elfStringTable.cpp
+++ b/src/share/vm/utilities/elfStringTable.cpp
@@ -42,7 +42,7 @@ ElfStringTable::ElfStringTable(FILE* file, Elf_Shdr shdr, int index) {
// try to load the string table
long cur_offset = ftell(file);
- m_table = (char*)os::malloc(sizeof(char) * shdr.sh_size);
+ m_table = (char*)os::malloc(sizeof(char) * shdr.sh_size, mtInternal);
if (m_table != NULL) {
// if there is an error, mark the error
if (fseek(file, shdr.sh_offset, SEEK_SET) ||