Initialize cs_invert to "false" in new csets.

This commit is contained in:
Tim J. Robbins 2004-07-10 06:28:18 +00:00
parent 5c2b7a2273
commit 9c8fd487a5

View File

@ -57,6 +57,7 @@ cset_alloc(void)
cs->cs_root = NULL;
cs->cs_classes = NULL;
cs->cs_havecache = false;
cs->cs_invert = false;
return (cs);
}