aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/wage/world.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wage/world.cpp b/engines/wage/world.cpp
index 066c39422f..6c74911a86 100644
--- a/engines/wage/world.cpp
+++ b/engines/wage/world.cpp
@@ -509,8 +509,8 @@ const char *World::getAboutMenuItemName() {
const char *pos = strchr(str, '@');
if (pos) {
strncat(menu, str, (pos - str));
- strcat(menu, _name.c_str());
- strcat(menu, pos + 1);
+ strncat(menu, _name.c_str(), 256);
+ strncat(menu, pos + 1, 256);
}
}