Patch from Valdimir to reduce stack usage, since recursive_action
authorEric Andersen <andersen@codepoet.org>
Tue, 10 Apr 2001 17:53:49 +0000 (17:53 -0000)
committerEric Andersen <andersen@codepoet.org>
Tue, 10 Apr 2001 17:53:49 +0000 (17:53 -0000)
is (as the name implies) is recursive, reducing stack memory usage
is important to avoid exhausting available stack memory.

libbb/recursive_action.c

index 8424ca0..510080b 100644 (file)
 #include <string.h>
 #include <dirent.h>
 #include <sys/stat.h>
+#include <stdlib.h>    /* free() */
 #include "libbb.h"
 
+
 /* same conditions as recursive_action */
 #define bb_need_name_too_long
 #define BB_DECLARE_EXTERN
@@ -112,25 +114,18 @@ int recursive_action(const char *fileName,
                }
                status = TRUE;
                while ((next = readdir(dir)) != NULL) {
-                       char nextFile[PATH_MAX];
+                       char *nextFile;
 
                        if ((strcmp(next->d_name, "..") == 0)
                                        || (strcmp(next->d_name, ".") == 0)) {
                                continue;
                        }
-                       if (strlen(fileName) + strlen(next->d_name) + 1 > PATH_MAX) {
-                               error_msg(name_too_long);
-                               return FALSE;
-                       }
-                       memset(nextFile, 0, sizeof(nextFile));
-                       if (fileName[strlen(fileName)-1] == '/')
-                               sprintf(nextFile, "%s%s", fileName, next->d_name);
-                       else
-                               sprintf(nextFile, "%s/%s", fileName, next->d_name);
+                       nextFile = concat_path_file(fileName, next->d_name);
                        if (recursive_action(nextFile, TRUE, followLinks, depthFirst,
                                                fileAction, dirAction, userData) == FALSE) {
                                status = FALSE;
                        }
+                       free(nextFile);
                }
                closedir(dir);
                if (dirAction != NULL && depthFirst == TRUE) {