Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / xbt / automaton / automatonparse_promela.c
index 64d5813..b86bf6e 100644 (file)
@@ -42,17 +42,18 @@ static void new_state(char* id, int src){
   if(type==-1)
     parsed_automaton->current_state = state;
 
-  if(src)
+  if(src) {
+    if (state_id_src)
+      free(state_id_src);
     state_id_src = xbt_strdup(id);
-    
+  }
 }
 
-static void new_transition(char* id, xbt_automaton_exp_label_t label){
-
-  char* id_state = xbt_strdup(id);
+static void new_transition(char* id, xbt_automaton_exp_label_t label)
+{
   xbt_automaton_state_t state_dst = NULL;
   new_state(id, 0);
-  state_dst = xbt_automaton_state_exists(parsed_automaton, id_state);
+  state_dst = xbt_automaton_state_exists(parsed_automaton, id);
   xbt_automaton_state_t state_src = xbt_automaton_state_exists(parsed_automaton, state_id_src);
   
   //xbt_transition_t trans = NULL;