X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ac01cf7b4713bf611c5e81e99e175486affb6307..ec2ef66582f4569432263c1abf7b253884e00c3d:/src/instr/instr_routing.c diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index 725f6f553a..bc53ae6e51 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -389,7 +389,7 @@ static void recursiveGraphExtraction (container_t container) (child2->kind == INSTR_HOST || child2->kind == INSTR_ROUTER)){ //getting route - xbt_dynar_t route; + xbt_dynar_t route = NULL; xbt_ex_t exception; TRY { route = global_routing->get_route (child_name1, child_name2); @@ -414,7 +414,7 @@ static void recursiveGraphExtraction (container_t container) //getting route routing_component_t root = global_routing->root; - route_extended_t route; + route_extended_t route = NULL; xbt_ex_t exception; TRY { route = root->get_route (root, child_name1, child_name2);