summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-22 10:55:22 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-07-22 10:55:22 +0000
commita325876ad3a1788b76190b2fc581b1f8bf2601ea (patch)
treee88ef2d5418fd5a62883163d50961d2dd84626ec /vm.c
parentc6692d9410ab5b20ed3fa84db72d51d9a37a6179 (diff)
Fix Issues reported by PVS-Studio static analyzer
* vm.c (vm_set_main_stack): remove unnecessary check. toplevel binding must be initialized. [Bug #12611] (N1) * win32/win32.c (w32_symlink): fix return type. [Bug #12611] (N3) * string.c (rb_str_split_m): simplify the condition. [Bug #12611](N4) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55729 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index c3e7bb3258..4f4c646b94 100644
--- a/vm.c
+++ b/vm.c
@@ -379,7 +379,7 @@ vm_set_main_stack(rb_thread_t *th, const rb_iseq_t *iseq)
vm_set_eval_stack(th, iseq, 0, &env->block);
/* save binding */
- if (bind && iseq->body->local_size > 0) {
+ if (iseq->body->local_size > 0) {
bind->env = vm_make_env_object(th, th->cfp);
}
}