google / jsonnet

Jsonnet - The data templating language
http://jsonnet.org
Apache License 2.0
6.87k stars 436 forks source link

Initialize Jsonnet::vm_ field to nullptr #1144

Closed johnbartholomew closed 4 months ago

johnbartholomew commented 4 months ago

The Jsonnet class constructor doesn't set up the VM; this is deferred until the user calls init(). However it's important for the vm_ field to itself be initialised to a known value. The Jsonnet destructor will attempt to destroy the VM only if the vm_ field is not null.