зеркало из https://github.com/github/ruby.git
process.c: unused variables
* process.c (rb_fork_async_signal_safe): remove initialized but never assigned local variables. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
5c100b57f8
Коммит
7307c32f1f
|
@ -3580,9 +3580,8 @@ rb_fork_async_signal_safe(int *status, int (*chfunc)(void*, char *, size_t), voi
|
||||||
char *errmsg, size_t errmsg_buflen)
|
char *errmsg, size_t errmsg_buflen)
|
||||||
{
|
{
|
||||||
rb_pid_t pid;
|
rb_pid_t pid;
|
||||||
int err, state = 0;
|
int err;
|
||||||
int ep[2];
|
int ep[2];
|
||||||
VALUE exc = Qnil;
|
|
||||||
int error_occurred;
|
int error_occurred;
|
||||||
|
|
||||||
if (status) *status = 0;
|
if (status) *status = 0;
|
||||||
|
@ -3593,14 +3592,12 @@ rb_fork_async_signal_safe(int *status, int (*chfunc)(void*, char *, size_t), voi
|
||||||
return pid;
|
return pid;
|
||||||
close(ep[1]);
|
close(ep[1]);
|
||||||
error_occurred = recv_child_error(ep[0], &err, errmsg, errmsg_buflen);
|
error_occurred = recv_child_error(ep[0], &err, errmsg, errmsg_buflen);
|
||||||
if (state || error_occurred) {
|
if (error_occurred) {
|
||||||
if (status) {
|
if (status) {
|
||||||
rb_protect(proc_syswait, (VALUE)pid, status);
|
rb_protect(proc_syswait, (VALUE)pid, status);
|
||||||
if (state) *status = state;
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
rb_syswait(pid);
|
rb_syswait(pid);
|
||||||
if (state) rb_exc_raise(exc);
|
|
||||||
}
|
}
|
||||||
errno = err;
|
errno = err;
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче