summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorsapier <Sapier at GMX dot net>2013-04-07 19:15:17 +0200
committerkwolekr <kwolekr@minetest.net>2013-04-07 22:50:53 -0400
commit98182f6097ec0568545f5612f6ae1354e110333d (patch)
tree125762a72e9c47244b38d013c9b9242db465d3ee /src/main.cpp
parentcd27c8ef5df35edd2cc606291f3f7985a61d41d5 (diff)
downloadminetest-98182f6097ec0568545f5612f6ae1354e110333d.tar.gz
minetest-98182f6097ec0568545f5612f6ae1354e110333d.tar.bz2
minetest-98182f6097ec0568545f5612f6ae1354e110333d.zip
fix memory leaks introduced by invalid gettext usage
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b0cabfe81..eef65cdb2 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1501,7 +1501,9 @@ int main(int argc, char *argv[])
while(device->run() && kill == false)
{
// Set the window caption
- device->setWindowCaption((std::wstring(L"Minetest [")+wgettext("Main Menu")+L"]").c_str());
+ wchar_t* text = wgettext("Main Menu");
+ device->setWindowCaption((std::wstring(L"Minetest [")+text+L"]").c_str());
+ delete[] text;
// This is used for catching disconnects
try