mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
fix uninitialized variable
Likewise this can easily be noticed if you read the warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61567 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
54983030de
commit
13af45c0d6
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ void
|
|||
rb_ec_error_print(rb_execution_context_t * volatile ec, volatile VALUE errinfo)
|
||||
{
|
||||
volatile int raised_flag = ec->raised_flag;
|
||||
volatile VALUE errat;
|
||||
volatile VALUE errat = Qundef;
|
||||
|
||||
if (NIL_P(errinfo))
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue