diff --git a/src/object.c b/src/object.c index 70b9a5c04ed4b3c4850ea8d620270e3b6ed67d08..050bb17757897f55624e2ff6abfaf30cba776547 100644 --- a/src/object.c +++ b/src/object.c @@ -251,6 +251,9 @@ void rt_object_init(struct rt_object *object, /* initialize object's parameters */ + /* check object type to avoid re-initialization */ + RT_ASSERT(object->type != (type | RT_Object_Class_Static)); + /* set object type to static */ object->type = type | RT_Object_Class_Static;