summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index 86a6709fc..6d1f29b9d 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -1166,7 +1166,7 @@ bool ReadLanguagePack(int lang_index)
}
// Allocate offsets
- MallocT(&langpack_offs, tot_count);
+ langpack_offs = MallocT<char*>(tot_count);
// Fill offsets
s = lang_pack->data;