VM: initialize the ctx member in the construction
To make valgrind happy because it complains that it is uninitialized.locals-and-roots
parent
340ad8b8d9
commit
83ce08487e
|
@ -3,7 +3,8 @@
|
||||||
namespace factor {
|
namespace factor {
|
||||||
|
|
||||||
factor_vm::factor_vm(THREADHANDLE thread)
|
factor_vm::factor_vm(THREADHANDLE thread)
|
||||||
: nursery(0, 0),
|
: ctx(NULL),
|
||||||
|
nursery(0, 0),
|
||||||
faulting_p(false),
|
faulting_p(false),
|
||||||
thread(thread),
|
thread(thread),
|
||||||
callback_id(0),
|
callback_id(0),
|
||||||
|
|
Loading…
Reference in New Issue