Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Compilation with warning flags
[simgrid.git] / src / surf / surf_routing_none.c
index 6a53d45..1f403c8 100644 (file)
@@ -13,12 +13,12 @@ static xbt_dynar_t none_get_onelink_routes(AS_t rc) {
 }
 
 static void none_get_route_and_latency(AS_t rc, sg_routing_edge_t src, sg_routing_edge_t dst,
-                                       route_t res,double *lat)
+    sg_platf_route_cbarg_t res,double *lat)
 {
   *lat = 0.0;
 }
 
-static route_t none_get_bypass_route(AS_t rc,
+static sg_platf_route_cbarg_t none_get_bypass_route(AS_t rc,
     sg_routing_edge_t src,
     sg_routing_edge_t dst, double *lat) {
   return NULL;
@@ -62,6 +62,8 @@ AS_t model_none_create_sized(size_t childsize) {
 void model_none_finalize(AS_t as) {
   xbt_dict_free(&as->routing_sons);
   xbt_dynar_free(&as->index_network_elm);
+  if(as->link_up_down_list)
+    xbt_dynar_free(&as->link_up_down_list);
   xbt_free(as);
 }