Fix another memory leak or two (one real, one potential)
diff --git a/Python/ast.c b/Python/ast.c
index 428b0cd..e5df906 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -1588,6 +1588,7 @@
         }
         tmp = BinOp(e, Pow, f, LINENO(n));
         if (!tmp) {
+            free_expr(f);
             free_expr(e);
             return NULL;
         }
@@ -2112,11 +2113,11 @@
 	e = ast_for_expr(c, CHILD(n, i));
 	if (!e)
 	    goto error;
+	asdl_seq_SET(seq, i / 2, e);
 	if (context) {
 	    if (!set_context(e, context, CHILD(n, i)))
 	    	goto error;
         }
-	asdl_seq_SET(seq, i / 2, e);
     }
     return seq;