Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Testing the value is useless here...
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 26 Jun 2012 17:20:52 +0000 (19:20 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 26 Jun 2012 17:20:52 +0000 (19:20 +0200)
src/instr/instr_paje_containers.c

index 7dbc044..64e0608 100644 (file)
@@ -147,12 +147,7 @@ container_t PJ_container_get (const char *name)
 
 container_t PJ_container_get_or_null (const char *name)
 {
-  if (name == NULL) return NULL;
-  container_t ret = xbt_dict_get_or_null (allContainers, name);
-  if (ret == NULL){
-    return NULL;
-  }
-  return ret;
+  return name ? xbt_dict_get_or_null(allContainers, name) : NULL;
 }
 
 container_t PJ_container_get_root ()