summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-09-06 08:42:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-09-06 08:42:57 +0000
commit2e5674c2abc08353d61a12da243103a44d5f569f (patch)
treee1fc03f7ed843be672e29a3a502da409f110e503 /dir.c
parent26d37a1b6ef66e54cdef2db8f3359cd13156f568 (diff)
* dir.c (dir_s_chdir): raise if environment variable HOME/LOGDIR
not set. * dir.c (glob_helper): avoid infinite loop on a file name with wildcard characters. (ruby-bugs#PR177) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c26
1 files changed, 15 insertions, 11 deletions
diff --git a/dir.c b/dir.c
index bc453ca41b..621418b797 100644
--- a/dir.c
+++ b/dir.c
@@ -409,6 +409,7 @@ dir_s_chdir(argc, argv, obj)
dist = getenv("HOME");
if (!dist) {
dist = getenv("LOGDIR");
+ if (!dist) rb_raise(rb_eArgError, "HOME/LOGDIR not set");
}
}
@@ -569,8 +570,9 @@ extract_elem(path)
#endif
void
-rb_glob_helper(path, flags, func, arg)
+rb_glob_helper(path, sub, flags, func, arg)
char *path;
+ char *sub;
int flags;
void (*func) _((const char*, VALUE));
VALUE arg;
@@ -578,14 +580,14 @@ rb_glob_helper(path, flags, func, arg)
struct stat st;
char *p, *m;
- if (!has_magic(path, 0, flags)) {
+ p = sub ? sub : path;
+ if (!has_magic(p, 0, flags)) {
if (rb_sys_stat(path, &st) == 0) {
(*func)(path, arg);
}
return;
}
- p = path;
while (p) {
if (*p == '/') p++;
m = strchr(p, '/');
@@ -611,10 +613,11 @@ rb_glob_helper(path, flags, func, arg)
}
if (S_ISDIR(st.st_mode)) {
if (m && strcmp(magic, "**") == 0) {
+ int n = strlen(base);
recursive = 1;
- buf = ALLOC_N(char, strlen(base)+strlen(m)+3);
+ buf = ALLOC_N(char, n+strlen(m)+3);
sprintf(buf, "%s%s%s", base, (*base)?"":".", m);
- rb_glob_helper(buf, flags, func, arg);
+ rb_glob_helper(buf, buf+n, flags, func, arg);
free(buf);
}
dirp = opendir(dir);
@@ -644,9 +647,10 @@ rb_glob_helper(path, flags, func, arg)
continue;
}
if (S_ISDIR(st.st_mode)) {
- strcat(buf, "/**");
- strcat(buf, m);
- rb_glob_helper(buf, flags, func, arg);
+ char *t = buf+strlen(buf);
+ strcpy(t, "/**");
+ strcpy(t+3, m);
+ rb_glob_helper(buf, t, flags, func, arg);
}
free(buf);
continue;
@@ -676,7 +680,7 @@ rb_glob_helper(path, flags, func, arg)
char *t = ALLOC_N(char, len+mlen+1);
sprintf(t, "%s%s", link->path, m);
- rb_glob_helper(t, flags, func, arg);
+ rb_glob_helper(t, t+len, flags, func, arg);
free(t);
}
tmp = link;
@@ -695,7 +699,7 @@ rb_glob(path, func, arg)
void (*func)();
VALUE arg;
{
- rb_glob_helper(path, FNM_PERIOD, func, arg);
+ rb_glob_helper(path, 0, FNM_PERIOD, func, arg);
}
void
@@ -704,7 +708,7 @@ rb_iglob(path, func, arg)
void (*func) _((const char*, VALUE));
VALUE arg;
{
- rb_glob_helper(path, FNM_PERIOD|FNM_NOCASE, func, arg);
+ rb_glob_helper(path, 0, FNM_PERIOD|FNM_NOCASE, func, arg);
}
static void