1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (rb_f_abort): should not bypass cleanup.

* ext/stringio/stringio.c (check_modifiable): void function.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2002-03-18 08:21:40 +00:00
parent 2059c382a6
commit 7dc66370cb
3 changed files with 9 additions and 2 deletions

View file

@ -32,6 +32,7 @@ static struct StringIO* check_strio _((VALUE));
static struct StringIO* get_strio _((VALUE));
static struct StringIO* readable _((struct StringIO *));
static struct StringIO* writable _((struct StringIO *));
static struct void check_modifiable _((struct StringIO *));
#define IS_STRIO(obj) (RDATA(obj)->dmark == (RUBY_DATA_FUNC)strio_mark)
#define error_inval(msg) (errno = EINVAL, rb_sys_fail(msg))
@ -117,7 +118,7 @@ writable(ptr)
return ptr;
}
static struct StringIO*
static struct void
check_modifiable(ptr)
struct StringIO *ptr;
{