Null initialize an ivar (oops)

This commit is contained in:
ridiculousfish 2013-02-19 23:16:44 -08:00
parent d3e9183303
commit fbedf020bc

View File

@ -130,7 +130,7 @@ struct env_node_t
struct env_node_t *next;
env_node_t() : new_scope(false), exportv(false) { }
env_node_t() : new_scope(false), exportv(false), next(NULL) { }
/* Returns a pointer to the given entry if present, or NULL. */
const var_entry_t *find_entry(const wcstring &key);