diff options
Diffstat (limited to 'src/build/gluegen.c')
-rw-r--r-- | src/build/gluegen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build/gluegen.c b/src/build/gluegen.c index bc973fb..e2bc2f3 100644 --- a/src/build/gluegen.c +++ b/src/build/gluegen.c @@ -869,7 +869,8 @@ _( "}") _( "") _( "static inline void freevars() {") for (int i = 1; i < ncvars; ++i) { -F( " extfree(%.*s->strval);", cvar_names[i].len, cvar_names[i].s) +F( " extfree(con_getvarcommon(%.*s)->strval);", + cvar_names[i].len, cvar_names[i].s) } _( "}") for (int i = 1; i < nevents; ++i) { |