]> git.wh0rd.org Git - nano.git/commitdiff
Letting malloc() help to find initialization failures and uses-after-free.
authorBenno Schulenberg <bensberg@justemail.net>
Thu, 6 Aug 2015 09:01:33 +0000 (09:01 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Thu, 6 Aug 2015 09:01:33 +0000 (09:01 +0000)
Change was suggested by Mike Frysinger.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5345 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c
src/nano.h

index cce2317763eadc86a95344290dbfbddcbd929799..df2754d6a811091cd5d5606b13ab0cb5d70fc57f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-08-06  Benno Schulenberg  <bensberg@justemail.net>
+       * src/nano.c (main): For --enable-debug builds, let malloc() help
+       to find initialization failures and uses-after-free.  Suggested by
+       Mike Frysinger.
+
 2015-08-04  Benno Schulenberg  <bensberg@justemail.net>
        * src/nano.c (main), src/files.c (read_file), src/rcfile.c,
        doc/man/nano.1, doc/man/nanorc.5, doc/texinfo/nano.texi: Add
index e95b9a982fd5b27b8afe486bbb74956b309b2d98..69c1d22587a3c5d27695329d54ce3748454a12a2 100644 (file)
@@ -2196,6 +2196,12 @@ int main(int argc, char **argv)
     };
 #endif
 
+#ifdef DEBUG
+    /* Help to find failed-to-initialize and use-after-free problems. */
+    mallopt(M_CHECK_ACTION, 3);
+    mallopt(M_PERTURB, 0x4c);
+#endif
+
 #ifdef ENABLE_UTF8
     {
        /* If the locale set exists and uses UTF-8, we should use
index 2fb93990e95e48ca91963643186174750e9a319b..4346eff537707890225f685dd828fb4ea3b554d0 100644 (file)
 #include <stdarg.h>
 #endif
 
+#ifdef DEBUG
+#include <malloc.h>
+#endif
+
 /* Suppress warnings for __attribute__((warn_unused_result)). */
 #define IGNORE_CALL_RESULT(call) do { if (call) {} } while(0)