From fc8ea34f15afe79837cad5a71a020764817c72c7 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Mon, 15 Mar 2004 20:11:41 +0000 Subject: [PATCH] missing return in case of error --- Plugin/Extract.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugin/Extract.cpp b/Plugin/Extract.cpp index e803148a9f..0c3fd068ce 100644 --- a/Plugin/Extract.cpp +++ b/Plugin/Extract.cpp @@ -1,4 +1,4 @@ -// $Id: Extract.cpp,v 1.5 2004-03-13 21:00:19 geuzaine Exp $ +// $Id: Extract.cpp,v 1.6 2004-03-15 20:11:41 geuzaine Exp $ // // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle // @@ -88,6 +88,7 @@ static void extract(int comp, List_T *inList, int inNb, if(comp < 0 || comp > nbComp-1){ Msg(GERROR, "Cannot extract component #(%d+1)=%d from a %d-component field", comp, comp+1, nbComp); + return; } int nb = List_Nbr(inList) / inNb; -- GitLab