* dir.c (glob_helper): fixed freeing buffer. (ruby-bugs-ja:PR#332)

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2857 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2002-09-12 08:48:57 +00:00
Родитель b031fdbc0e
Коммит 563885cad6
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Thu Sep 12 17:45:15 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* dir.c (glob_helper): fixed freeing buffer. (ruby-bugs-ja:PR#332)
Thu Sep 12 00:09:32 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (rb_trap_eval): preserve thread status and so on.

2
dir.c
Просмотреть файл

@ -787,6 +787,7 @@ glob_helper(path, sub, flags, func, arg)
status = glob_helper(buf, t, flags, func, arg);
free(buf);
if (status) goto finalize;
continue;
}
free(buf);
continue;
@ -796,6 +797,7 @@ glob_helper(path, sub, flags, func, arg)
sprintf(buf, "%s%s%s", base, (BASE) ? "/" : "", dp->d_name);
if (!m) {
status = glob_call_func(func, path, arg);
free(buf);
if (status) goto finalize;
continue;
}