static JSOBJ newObject()

in src/ujdecode.c [269:278]


static JSOBJ newObject(void *context)
{
	struct DecoderState *ds = context;
	ObjectItem *oi = (ObjectItem *) alloc(ds, sizeof(ObjectItem));
	oi->item.type = UJT_Object;
	oi->head = NULL;
	oi->tail = NULL;

	return (JSOBJ) oi;
}