Fixed a bug causing pspp to crash when computed variables had no format
[pspp-builds.git] / src / exprP.h
index 873f0ce779210d163490c1f71944f22dd4db2a46..596638005f6c48ce699048e9e5b609187bc9a71d 100644 (file)
@@ -281,10 +281,7 @@ struct expression
     double *num;               /* Numeric operands. */
     unsigned char *str;                /* String operands. */
     union value *stack;                /* Evaluation stack. */
-    unsigned char *str_stack;  /* String evaluation stack. */
-#if !PAGED_STACK
-    size_t str_size;           /* Size of string eval stack. */
-#endif
+    struct pool *pool;          /* Pool for evaluation temporaries. */
   };
 
 struct nonterm_node *optimize_expression (struct nonterm_node *);