Fix context leak

This commit is contained in:
Nishi 2026-06-20 01:21:01 +09:00
commit dc16dd98fb
12 changed files with 59 additions and 38 deletions

View file

@ -157,6 +157,11 @@ typedef struct workarea {
typedef struct sj3context {
Global* work;
STDY* stdy;
JREC* jrec_free;
JREC* jrec_pool;
CLREC* clrec_free;
CLREC* clrec_pool;
} Sj3Context;
#endif