Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Messages which the payload datatype descriptor is NULL contain 0 bytes as payload...
[simgrid.git] / src / gras / DataDesc / datadesc.c
index fca00c4..004436f 100644 (file)
@@ -144,7 +144,7 @@ gras_datadesc_get_id(gras_datadesc_type_t ddt) {
  *
  */
 int gras_datadesc_size(gras_datadesc_type_t type) {
-  return type->size[GRAS_THISARCH];
+  return type?type->size[GRAS_THISARCH]:0;
 }
 
 /**