summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
Diffstat (limited to 'src/map')
-rw-r--r--src/map/battle.cpp2
-rw-r--r--src/map/script.cpp6
2 files changed, 7 insertions, 1 deletions
diff --git a/src/map/battle.cpp b/src/map/battle.cpp
index a6aebcb..3b57d13 100644
--- a/src/map/battle.cpp
+++ b/src/map/battle.cpp
@@ -5726,7 +5726,7 @@ int battle_config_read(const char *cfgName)
goto continue_outer;
}
- PRINTF("WARNING: unknown battle conf key: %s", w1);
+ PRINTF("WARNING: unknown battle conf key: %s\n", w1);
continue_outer:
;
diff --git a/src/map/script.cpp b/src/map/script.cpp
index 3a75728..5411e59 100644
--- a/src/map/script.cpp
+++ b/src/map/script.cpp
@@ -5077,8 +5077,14 @@ void do_final_script(void)
{
if (mapreg_dirty >= 0)
script_save_mapreg();
+#if 0
+ // labels are allocated just out of this
+ // (so it's a leak ...)
+ // this is disabled because it leads to a crash
+ // due to double-free
if (script_buf)
free(script_buf);
+#endif
if (mapreg_db)
numdb_final(mapreg_db, NULL);