From 43fec6328137c9f938a2f62fced7c81813cee136 Mon Sep 17 00:00:00 2001
From: Yorhel <git@yorhel.nl>
Date: Sun, 26 Apr 2009 11:18:45 +0200
Subject: [PATCH] Removed last occurence of PATH_MAX

And it wasn't even used for a path, but for a row on the screen...
---
 src/browser.c | 34 +++++++++++++++++++---------------
 src/global.h  | 19 -------------------
 2 files changed, 19 insertions(+), 34 deletions(-)

diff --git a/src/browser.c b/src/browser.c
index 3961cfa..0aaa51c 100644
--- a/src/browser.c
+++ b/src/browser.c
@@ -151,7 +151,7 @@ void browse_draw_info(struct dir *dr) {
 
 
 void browse_draw_item(struct dir *n, int row, off_t max, int ispar) {
-  char tmp[1000], ct, dt, *size, gr[11];
+  char *line, ct, dt, *size, gr[11];
   int i, o;
   float pc;
 
@@ -194,23 +194,25 @@ void browse_draw_item(struct dir *n, int row, off_t max, int ispar) {
   }
 
   /* format and add item to the list */
+  line = malloc(winrows+1);
   switch(graph) {
     case 0:
-      sprintf(tmp, "%%c %%7s  %%c%%-%ds", wincols-12);
-      mvprintw(row, 0, tmp, ct, size, dt, cropstr(n->name, wincols-12));
+      sprintf(line, "%%c %%7s  %%c%%-%ds", wincols-12);
+      mvprintw(row, 0, line, ct, size, dt, cropstr(n->name, wincols-12));
       break;
     case 1:
-      sprintf(tmp, "%%c %%7s [%%10s] %%c%%-%ds", wincols-24);
-      mvprintw(row, 0, tmp, ct, size, gr, dt, cropstr(n->name, wincols-24));
+      sprintf(line, "%%c %%7s [%%10s] %%c%%-%ds", wincols-24);
+      mvprintw(row, 0, line, ct, size, gr, dt, cropstr(n->name, wincols-24));
       break;
     case 2:
-      sprintf(tmp, "%%c %%7s [%%4.1f%%%%] %%c%%-%ds", wincols-19);
-      mvprintw(row, 0, tmp, ct, size, pc, dt, cropstr(n->name, wincols-19));
+      sprintf(line, "%%c %%7s [%%4.1f%%%%] %%c%%-%ds", wincols-19);
+      mvprintw(row, 0, line, ct, size, pc, dt, cropstr(n->name, wincols-19));
       break;
     case 3:
-      sprintf(tmp, "%%c %%7s [%%4.1f%%%% %%10s] %%c%%-%ds", wincols-30);
-      mvprintw(row, 0, tmp, ct, size, pc, gr, dt, cropstr(n->name, wincols-30));
+      sprintf(line, "%%c %%7s [%%4.1f%%%% %%10s] %%c%%-%ds", wincols-30);
+      mvprintw(row, 0, line, ct, size, pc, gr, dt, cropstr(n->name, wincols-30));
   }
+  free(line);
 
   if(n->flags & FF_BSEL)
     attroff(A_REVERSE);
@@ -219,7 +221,7 @@ void browse_draw_item(struct dir *n, int row, off_t max, int ispar) {
 
 void browse_draw() {
   struct dir *n, ref, *cur, *sel = NULL;
-  char tmp[PATH_MAX], *tmp2;
+  char *line, *tmp;
   int selected, i;
   off_t max = 1;
 
@@ -233,9 +235,11 @@ void browse_draw() {
   mvprintw(0,0,"%s %s ~ Use the arrow keys to navigate, press ? for help", PACKAGE_NAME, PACKAGE_VERSION);
 
   if(cur) {
-    strcpy(tmp, formatsize(cur->parent->size));
+    line = malloc(winrows+1);
+    strcpy(line, formatsize(cur->parent->size));
     mvprintw(winrows-1, 0, " Total disk usage: %s  Apparent size: %s  Items: %d",
-      tmp, formatsize(cur->parent->asize), cur->parent->items);
+      line, formatsize(cur->parent->asize), cur->parent->items);
+    free(line);
   } else
     mvaddstr(winrows-1, 0, " No items to display.");
   attroff(A_REVERSE);
@@ -243,9 +247,9 @@ void browse_draw() {
   mvhline(1, 0, '-', wincols);
   if(cur) {
     mvaddch(1, 3, ' ');
-    tmp2 = getpath(cur->parent);
-    mvaddstr(1, 4, cropstr(tmp2, wincols-8));
-    mvaddch(1, 4+((int)strlen(tmp2) > wincols-8 ? wincols-8 : (int)strlen(tmp2)), ' ');
+    tmp = getpath(cur->parent);
+    mvaddstr(1, 4, cropstr(tmp, wincols-8));
+    mvaddch(1, 4+((int)strlen(tmp) > wincols-8 ? wincols-8 : (int)strlen(tmp)), ' ');
   }
 
   if(!cur)
diff --git a/src/global.h b/src/global.h
index 4ccbcdf..ebf7fd7 100644
--- a/src/global.h
+++ b/src/global.h
@@ -29,25 +29,6 @@
 #include "config.h"
 #include <stdio.h>
 #include <sys/types.h>
-#include <limits.h>
-
-/* PATH_MAX 260 on Cygwin is too small for /proc/registry */
-#ifdef __CYGWIN__
-# if PATH_MAX < 1024
-#  undef PATH_MAX
-#  define PATH_MAX 1024
-# endif
-#endif
-
-/* get PATH_MAX */
-#ifndef PATH_MAX
-# ifdef _POSIX_PATH_MAX
-#  define PATH_MAX _POSIX_PATH_MAX
-# else
-#  define PATH_MAX 4096
-# endif
-#endif
-
 
 /* File Flags (struct dir -> flags) */
 #define FF_DIR    0x01
-- 
GitLab