diff --git a/spot/twacube_algos/convert.cc b/spot/twacube_algos/convert.cc index 541d5ae45..ba89ac97c 100644 --- a/spot/twacube_algos/convert.cc +++ b/spot/twacube_algos/convert.cc @@ -1,5 +1,5 @@ // -*- coding: utf-8 -*- -// Copyright (C) 2015, 2016, 2018 Laboratoire de Recherche et Developpement de +// Copyright (C) 2015, 2016, 2018, 2020 Laboratoire de Recherche et Developpement de // l'Epita (LRDE). // // This file is part of Spot, a model checking library. @@ -62,6 +62,9 @@ namespace spot spot::twacube_ptr twa_to_twacube(const spot::const_twa_graph_ptr aut) { + if (aut == nullptr) + return nullptr; + // Compute the necessary binder and extract atomic propositions std::unordered_map ap_binder; std::vector* aps = extract_aps(aut, ap_binder);