Actually implement the new procedure code and adapt all of its clients
[pspp-builds.git] / src / language / lexer / variable-parser.c
index 26b2e1bfd2537d3fff65978a93e1458a09492a30..055bfe09522676f1252681be4f84c3df388220e5 100644 (file)
@@ -116,12 +116,6 @@ parse_variables (struct lexer *lexer, const struct dictionary *d,
 
   vs = var_set_create_from_dict (d);
   success = parse_var_set_vars (lexer, vs, var, cnt, opts);
-  if ( success == 0 )
-    {
-      free ( *var ) ;
-      *var = NULL;
-      *cnt = 0;
-    }
   var_set_destroy (vs);
   return success;
 }