mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_bio.c (ossl_obj2bio): should not use fptr->f.
[ruby-dev:25101] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7498 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bebc2eb8c7
commit
25a637eff5
2 changed files with 21 additions and 3 deletions
|
@ -17,15 +17,28 @@ ossl_obj2bio(VALUE obj)
|
|||
|
||||
if (TYPE(obj) == T_FILE) {
|
||||
OpenFile *fptr;
|
||||
FILE *fp;
|
||||
int fd;
|
||||
|
||||
GetOpenFile(obj, fptr);
|
||||
rb_io_check_readable(fptr);
|
||||
bio = BIO_new_fp(fptr->f, BIO_NOCLOSE);
|
||||
}
|
||||
if ((fd = dup(fptr->fd)) < 0){
|
||||
rb_sys_fail(0);
|
||||
}
|
||||
if (!(fp = fdopen(fd, "r"))){
|
||||
close(fd);
|
||||
rb_sys_fail(0);
|
||||
}
|
||||
if (!(bio = BIO_new_fp(fp, BIO_CLOSE))){
|
||||
fclose(fp);
|
||||
ossl_raise(eOSSLError, NULL);
|
||||
}
|
||||
}
|
||||
else {
|
||||
StringValue(obj);
|
||||
bio = BIO_new_mem_buf(RSTRING(obj)->ptr, RSTRING(obj)->len);
|
||||
if (!bio) ossl_raise(eOSSLError, NULL);
|
||||
}
|
||||
if (!bio) ossl_raise(eOSSLError, NULL);
|
||||
|
||||
return bio;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue