.
authorJim Meyering <jim@meyering.net>
Tue, 28 May 1996 23:42:01 +0000 (23:42 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 28 May 1996 23:42:01 +0000 (23:42 +0000)
src/dircolors.c

index 6a50f7492b763b2d1fbc154ece3382bcc91c8980..296d13d06ac03bd773e05003f57ffb1a62972106 100644 (file)
@@ -288,8 +288,7 @@ main (int argc, char *argv[])
       if (p != NULL && *p != '\0')
        {
          /* Note: deliberate leak.  It's not worth freeing this.  */
-         input_file = xmalloc (strlen (p) + 1
-                               + strlen (USER_FILE) + 1);
+         input_file = xmalloc (strlen (p) + 1 + strlen (USER_FILE) + 1);
          stpcpy (stpcpy (stpcpy (input_file, p), "/"), USER_FILE);
          fp = fopen (input_file, "r");
        }