summaryrefslogtreecommitdiff
path: root/src/town_cmd.cpp
diff options
context:
space:
mode:
authorRubidium <rubidium@openttd.org>2021-05-09 22:51:26 +0200
committerrubidium42 <rubidium42@users.noreply.github.com>2021-05-10 16:03:31 +0200
commit296194ad36c601cf12d215a65d84222bbdf4de61 (patch)
tree99a0074d211257c2a5c29c40da75f23713eaf406 /src/town_cmd.cpp
parent79fc094c54801bba83dc8aca2028fd6baf35965f (diff)
downloadopenttd-296194ad36c601cf12d215a65d84222bbdf4de61.tar.xz
Fix: memory leak due to assigning result of strdup to a std::string
Diffstat (limited to 'src/town_cmd.cpp')
-rw-r--r--src/town_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index 01331a269..033d04248 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -2004,7 +2004,7 @@ CommandCost CmdFoundTown(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32
old_generating_world.Restore();
if (t != nullptr && !StrEmpty(text)) {
- t->name = stredup(text);
+ t->name = text;
t->UpdateVirtCoord();
}