ref: 6f253d40525f256056837e7fb708db8523e77977
parent: 731595bb10f2d57217e8c3850611fcc0ed81a586
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Sun Jun 16 21:20:12 EDT 2024
don't try to parse unused fixed arrays
--- a/otf.rkt
+++ b/otf.rkt
@@ -161,8 +161,10 @@
(if index empty (~a "if(skip_bytes(ctx, " (size (field-type f)) ") < 0){")))]
[count
#:when (and (number? (cadr count)) (type? (field-type f)))
- (list (~a "for(int i = 0; i < " (cadr count) "; i++)")
- (~a "\t" ref "[i] = " ((type-parse (field-type f)) b index "i") ";"))]
+ (if (field-unused? f)
+ empty
+ (list (~a "for(int i = 0; i < " (cadr count) "; i++)")
+ (~a "\t" ref "[i] = " ((type-parse (field-type f)) b index "i") ";")))]
[count
(~a "if(ctxarray(ctx, &"
ref