Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-10-03 18:44:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-10-03 18:44:33 +0400
commitf5eb8803583b96b605a3116ab00be138a90bb0c2 (patch)
treee76db7b479acac8d9e58dfea97ff979049819727 /source/creator
parentc819fd4ee0b935dd88f2b516c4d49332af447f03 (diff)
freeing mempool elements now fills freed memory with --debug for debug builds.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index b442194bd7d..a3bce79b6e7 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -76,13 +76,13 @@
#include "BLI_threads.h"
#include "BLI_utildefines.h"
#include "BLI_callbacks.h"
+#include "BLI_blenlib.h"
+#include "BLI_mempool.h"
#include "DNA_ID.h"
#include "DNA_scene_types.h"
#include "DNA_userdef_types.h"
-#include "BLI_blenlib.h"
-
#include "BKE_blender.h"
#include "BKE_brush.h"
#include "BKE_context.h"
@@ -412,10 +412,13 @@ static int debug_mode(int UNUSED(argc), const char **UNUSED(argv), void *data)
G.debug |= G_DEBUG; /* std output printf's */
printf(BLEND_VERSION_STRING_FMT);
MEM_set_memory_debug();
+#ifdef DEBUG
+ BLI_mempool_set_memory_debug();
+#endif
#ifdef WITH_BUILDINFO
printf("Build: %s %s %s %s\n", build_date, build_time, build_platform, build_type);
-#endif // WITH_BUILDINFO
+#endif
BLI_argsPrint(data);
return 0;