mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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:
parent
b031fdbc0e
commit
563885cad6
2 changed files with 6 additions and 0 deletions
|
@ -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
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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue