Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Close file after use.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 27 Feb 2020 08:40:55 +0000 (09:40 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 27 Feb 2020 08:41:02 +0000 (09:41 +0100)
src/xbt/automaton/automatonparse_promela.c

index 8f4fb02..7121c12 100644 (file)
@@ -67,4 +67,5 @@ void xbt_automaton_load(xbt_automaton_t a, const char *file)
   if (yyin == NULL)
     xbt_die("Failed to open automaton file `%s': %s", file, strerror(errno));
   yyparse();
+  fclose(yyin);
 }