about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--012transform.cc1
-rw-r--r--053recipe_header.cc1
2 files changed, 1 insertions, 1 deletions
diff --git a/012transform.cc b/012transform.cc
index 36edd807..3a23efeb 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -50,7 +50,6 @@ void transform_all() {
 //?     cerr << "transform " << t << '\n';
     for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) {
       recipe& r = p->second;
-      if (r.steps.empty()) continue;
       if (r.transformed_until != t-1) continue;
       // End Transform Checks
       (*Transform.at(t))(/*recipe_ordinal*/p->first);
diff --git a/053recipe_header.cc b/053recipe_header.cc
index 44e7e8da..c521eb69 100644
--- a/053recipe_header.cc
+++ b/053recipe_header.cc
@@ -422,6 +422,7 @@ void fill_in_reply_ingredients(recipe_ordinal r) {
       add_header_products(inst, caller_recipe);
   }
   // fall through reply
+  if (caller_recipe.steps.empty()) return;  // error will be raised elsewhere if there's a product in the header; just give up
   const instruction& final_instruction = caller_recipe.steps.at(SIZE(caller_recipe.steps)-1);
   if (final_instruction.name != "reply" && final_instruction.name != "return") {
     instruction inst;