DO IF: Fix crash when END IF appears without DO IF. 20120418030503/pspp
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 18 Apr 2012 04:26:21 +0000 (21:26 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Wed, 18 Apr 2012 04:26:21 +0000 (21:26 -0700)
Reported by Jill Covert.
Bug #36231.

src/language/control/do-if.c
tests/language/control/do-if.at

index fe9ca73008e7ba8ed64e02621adbffbf2cd9bb60..a44f6e81896f2efb528eeb6c01e20f944c62f4d0 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000, 2009-2011 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2009-2012 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -136,11 +136,11 @@ int
 cmd_end_if (struct lexer *lexer UNUSED, struct dataset *ds)
 {
   struct do_if_trns *do_if = ctl_stack_top (&do_if_class);
-  assert (ds == do_if->ds);
 
   if (do_if == NULL)
     return CMD_CASCADING_FAILURE;
 
+  assert (ds == do_if->ds);
   ctl_stack_pop (do_if);
 
   return CMD_SUCCESS;
index 45f696a3b7c13551df94f01661c77ceb71091a4d..9f1457cce7646925c146915f7fdb088210921330 100644 (file)
@@ -48,3 +48,13 @@ EXECUTE.
 AT_CHECK([pspp do-if.sps], [0], [ignore])
 AT_CHECK([cat do-if.out], [0], [expout])
 AT_CLEANUP
+
+AT_SETUP([unpaired END IF crash])
+AT_DATA([do-if.sps], [dnl
+DATA LIST LIST NOTABLE/a b c.
+END IF.
+])
+AT_CHECK([pspp -O format=csv do-if.sps], [0], [dnl
+do-if.pspp:2: error: END IF: This command cannot appear outside DO IF...END IF.
+])
+AT_CLEANUP