Move the assert again
Signed-off-by: Gavin D. Howard <gavin@gavinhoward.com>
diff --git a/src/vm.c b/src/vm.c
index 8782bcd..1cbe832 100644
--- a/src/vm.c
+++ b/src/vm.c
@@ -1523,6 +1523,8 @@
bc_vm_file(path);
}
+ assert(false);
+
#if BC_ENABLE_EXTRA_MATH
// These are needed for the pseudo-random number generator.
bc_unveil("/dev/urandom", "r");
@@ -1541,8 +1543,6 @@
bc_pledge(bc_pledge_end, NULL);
}
- assert(false);
-
#if BC_ENABLE_AFL
// This is the thing that makes fuzzing with AFL++ so fast. If you move this
// back, you won't cause any problems, but fuzzing will slow down. If you