File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ namespace rubinius {
71
71
72
72
VM::VM (uint32_t id, SharedState& shared, const char * name)
73
73
: memory::ManagedThread(id, shared, memory::ManagedThread::eRuby, name)
74
- , call_frame_(0 )
74
+ , call_frame_(NULL )
75
75
, thread_nexus_(shared.thread_nexus())
76
- , saved_call_site_information_(0 )
76
+ , saved_call_site_information_(NULL )
77
77
, fiber_stacks_(this , shared)
78
78
, park_(new Park)
79
79
, tooling_env_(NULL )
@@ -90,8 +90,9 @@ namespace rubinius {
90
90
, current_fiber(this , nil<Fiber>())
91
91
, root_fiber(this , nil<Fiber>())
92
92
, waiting_object_(this , cNil)
93
- , custom_wakeup_(0 )
94
- , custom_wakeup_data_(0 )
93
+ , native_method_environment(NULL )
94
+ , custom_wakeup_(NULL )
95
+ , custom_wakeup_data_(NULL )
95
96
, thread_state_(this )
96
97
{
97
98
if (memory ()) {
You can’t perform that action at this time.
0 commit comments