Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
untangle a bit mc header files
[simgrid.git] / src / xbt / automaton / automatonparse_promela.c
index 93e793a..9bc4586 100644 (file)
@@ -13,6 +13,7 @@
 # include <unistd.h>   /* isatty */
 #endif
 #include <xbt/log.h>
+#include <xbt/sysdep.h>
 
 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(xbt_automaton);
 
@@ -33,7 +34,7 @@ static void new_state(char* id, int src){
       type = -1;
     }
   }
-  free(id_copy);
+  xbt_free(id_copy);
 
   xbt_automaton_state_t state = xbt_automaton_state_exists(parsed_automaton, id);
   if(state == NULL){
@@ -44,8 +45,7 @@ static void new_state(char* id, int src){
     parsed_automaton->current_state = state;
 
   if(src) {
-    if (state_id_src)
-      free(state_id_src);
+    xbt_free(state_id_src);
     state_id_src = xbt_strdup(id);
   }
 }