Added a --enable-debug option to configure and
[pspp-builds.git] / src / filename.c
index 4aaf7d17f916d5c92aca4d4d2aad8f11d07376e9..5cbbc9eab2d6ec2bbb83dc586205cd69a61d16f1 100644 (file)
@@ -46,8 +46,6 @@ char *alloca ();
 #include "str.h"
 #include "version.h"
 
-#undef DEBUGGING
-/*#define DEBUGGING 1 */
 #include "debug-print.h"
 
 /* PORTME: Everything in this file is system dependent. */
@@ -373,16 +371,10 @@ fn_normalize (const char *filename)
   else
     {
       errno = 0;
-#if __CHECKER__
-      memset (dest, 0, maxlen);
-#endif
       while (getcwd (dest, maxlen - (dest - fn2)) == NULL && errno == ERANGE)
        {
          maxlen *= 2;
          dest = fn2 = xrealloc (fn2, maxlen + 1);
-#if __CHECKER__
-         memset (dest, 0, maxlen);
-#endif
          errno = 0;
        }
       if (errno)