diff options
Diffstat (limited to 'misc.c')
| -rw-r--r-- | misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ void free_cfg(config_item *cfg) for (i = cfg; i->type != C_END; i++) if (i->type == C_STRING) - sfree(i->sval); + sfree(i->u.string.sval); sfree(cfg); } |