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

* ext/socket/socket.c (rsock_sys_fail_path): Use rb_str_inspect only

for String to avoid SEGV.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40152 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2013-04-06 04:14:57 +00:00
parent 24ee6971cc
commit 8c6c73745e
2 changed files with 18 additions and 8 deletions

View file

@ -1,6 +1,11 @@
Sat Apr 6 13:13:39 2013 Tanaka Akira <akr@fsij.org>
* ext/socket/socket.c (rsock_sys_fail_path): Use rb_str_inspect only
for String to avoid SEGV.
Sat Apr 6 12:40:16 2013 Tanaka Akira <akr@fsij.org>
* ext/socket/rubysocket.h (rsock_sys_fail_host_port) Wrap by NORETURN.
* ext/socket/rubysocket.h (rsock_sys_fail_host_port): Wrap by NORETURN.
(rsock_sys_fail_path): Ditto.
(rsock_sys_fail_sockaddr): Ditto.

View file

@ -29,16 +29,21 @@ void
rsock_sys_fail_path(const char *mesg, VALUE path)
{
VALUE message;
if (memchr(RSTRING_PTR(path), '\0', RSTRING_LEN(path))) {
path = rb_str_inspect(path);
message = rb_sprintf("%s for %s", mesg,
StringValueCStr(path));
if (RB_TYPE_P(path, T_STRING)) {
if (memchr(RSTRING_PTR(path), '\0', RSTRING_LEN(path))) {
path = rb_str_inspect(path);
message = rb_sprintf("%s for %s", mesg,
StringValueCStr(path));
}
else {
message = rb_sprintf("%s for \"%s\"", mesg,
StringValueCStr(path));
}
rb_sys_fail_str(message);
}
else {
message = rb_sprintf("%s for \"%s\"", mesg,
StringValueCStr(path));
rb_sys_fail(mesg);
}
rb_sys_fail_str(message);
}
void