X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2807fde4fd1f59c230d69a934634c5dfb77905f2..a976ff26ca5afba53350d9ed449c122b52972824:/src/xbt/automaton/automatonparse_promela.c diff --git a/src/xbt/automaton/automatonparse_promela.c b/src/xbt/automaton/automatonparse_promela.c index c6abfb5634..6f59cb4d0f 100644 --- a/src/xbt/automaton/automatonparse_promela.c +++ b/src/xbt/automaton/automatonparse_promela.c @@ -1,6 +1,6 @@ /* methods for implementation of automaton from promela description */ -/* Copyright (c) 2011-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2011-2018. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -33,7 +33,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 +44,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); } }