* dln.c (dln_load): ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-12-16 02:41:23 +00:00
parent 6a613ba2e4
commit bf451dbba4
2 changed files with 4 additions and 2 deletions

View File

@ -4,6 +4,8 @@ Tue Dec 16 11:37:07 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* load.c (rb_feature_p): ditto.
* dln.c (dln_load): ditto.
Tue Dec 16 09:14:28 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (block_call): block should not be given to yield.

4
dln.c
View File

@ -1433,8 +1433,8 @@ dln_load(const char *file)
if (err_stat != B_NO_ERROR) {
char real_name[MAXPATHLEN];
strcpy(real_name, buf);
strcat(real_name, "__Fv");
strlcpy(real_name, buf, MAXPATHLEN);
strlcat(real_name, "__Fv", MAXPATHLEN);
err_stat = get_image_symbol(img_id, real_name,
B_SYMBOL_TYPE_TEXT, (void **)&init_fct);
}