]> Nishi Git Mirror - gwion.git/commitdiff
:art: Improve new_type
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 4 Oct 2019 12:18:25 +0000 (14:18 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 4 Oct 2019 12:18:25 +0000 (14:18 +0200)
src/oo/type.c

index d1ab558ef8a2ebbac8e2882c2b4bff31718cdc62..c88d69de33d63ac54bb5f972890c8ada4bd21514 100644 (file)
@@ -44,7 +44,7 @@ Type new_type(MemPool p, const m_uint xid, const m_str name, const Type parent)
   type->name   = name;
   type->e = mp_calloc(p, TypeInfo);
   type->e->parent = parent;
-  if(type->e->parent) {
+  if(parent) {
     type->size = parent->size;
     type->e->tuple = new_tupleform(p);
   }