* dir.c (glob_helper): should have proceed link when link->path
was non existing symbolic link. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2350 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
19c42c0740
commit
b010cccc90
@ -1,4 +1,8 @@
|
|||||||
<<<<<<< ChangeLog
|
Wed Apr 10 18:42:23 2002 Tachino Nobuhiro <tachino@jp.fujitsu.com>
|
||||||
|
|
||||||
|
* dir.c (glob_helper): should have proceed link when link->path
|
||||||
|
was non existing symbolic link.
|
||||||
|
|
||||||
Wed Apr 10 17:30:19 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Wed Apr 10 17:30:19 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* variable.c (rb_obj_remove_instance_variable): raise NameError if
|
* variable.c (rb_obj_remove_instance_variable): raise NameError if
|
||||||
|
8
dir.c
8
dir.c
@ -779,14 +779,14 @@ glob_helper(path, sub, flags, func, arg)
|
|||||||
glob_helper(t, t+len, flags, func, arg);
|
glob_helper(t, t+len, flags, func, arg);
|
||||||
free(t);
|
free(t);
|
||||||
}
|
}
|
||||||
tmp = link;
|
|
||||||
link = link->next;
|
|
||||||
free(tmp->path);
|
|
||||||
free(tmp);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
rb_sys_warning(link->path);
|
rb_sys_warning(link->path);
|
||||||
}
|
}
|
||||||
|
tmp = link;
|
||||||
|
link = link->next;
|
||||||
|
free(tmp->path);
|
||||||
|
free(tmp);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user