static JSOBJ newNull()

in src/ujdecode.c [261:267]


static JSOBJ newNull(void *context)
{
	struct DecoderState *ds = context;
	NullValue *nv = (NullValue *) alloc(ds, sizeof(NullValue *));
	nv->item.type = UJT_Null;
	return (JSOBJ) nv;
}