aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-14 07:19:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-02-14 07:19:23 +0000
commitb6ea1cfbb0848c6510e4c7efd7be6ca513572e40 (patch)
treed6a54d49b46c5e4c91c34034a1132ac418aac704 /eval.c
parent1210ed2f24d33fb5f810baa6d74ea1aea7fa2597 (diff)
downloadruby-b6ea1cfbb0848c6510e4c7efd7be6ca513572e40.tar.gz
not overwrite cause
* eval.c (setup_exception): set the cause only if it is explicitly given or not set yet. [Bug #12068] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/eval.c b/eval.c
index b9fcd86f5c..91fb2c9e9f 100644
--- a/eval.c
+++ b/eval.c
@@ -25,6 +25,7 @@ VALUE rb_eLocalJumpError;
VALUE rb_eSysStackError;
ID ruby_static_id_signo, ruby_static_id_status;
+static ID id_cause;
#define id_signo ruby_static_id_signo
#define id_status ruby_static_id_status
@@ -442,9 +443,6 @@ static VALUE get_thread_errinfo(rb_thread_t *th);
static VALUE
exc_setup_cause(VALUE exc, VALUE cause)
{
- ID id_cause;
- CONST_ID(id_cause, "cause");
-
#if SUPPORT_JOKE
if (NIL_P(cause)) {
ID id_true_cause;
@@ -488,10 +486,15 @@ setup_exception(rb_thread_t *th, int tag, volatile VALUE mesg, VALUE cause)
mesg = rb_exc_new(rb_eRuntimeError, 0, 0);
nocause = 0;
}
- if (cause == Qundef) {
- cause = nocause ? Qnil : get_thread_errinfo(th);
+ if (cause != Qundef) {
+ exc_setup_cause(mesg, cause);
+ }
+ else if (nocause) {
+ exc_setup_cause(mesg, Qnil);
+ }
+ else if (!rb_ivar_defined(mesg, id_cause)) {
+ exc_setup_cause(mesg, get_thread_errinfo(th));
}
- exc_setup_cause(mesg, cause);
file = rb_source_loc(&line);
if (file && !NIL_P(mesg)) {
@@ -1668,4 +1671,5 @@ Init_eval(void)
id_signo = rb_intern_const("signo");
id_status = rb_intern_const("status");
+ id_cause = rb_intern_const("cause");
}