diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-22 18:21:10 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-22 22:20:30 -0400 |
commit | 664129de7d14bcfa4fe16e319d13a226b5087b82 (patch) | |
tree | ef84da5b38084f0211b6c15d8fc14fa85aa681e6 /src/utils.c | |
parent | 9474f277a7ed4f3536b721cea721b25b30183d02 (diff) | |
download | stasis-664129de7d14bcfa4fe16e319d13a226b5087b82.tar.gz |
Replace free() with guard_* macros
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 74b4f6f..dd3dbe9 100644 --- a/src/utils.c +++ b/src/utils.c @@ -644,6 +644,8 @@ int fix_tox_conf(const char *filename, char **result) { fclose(fptemp); *result = tempfile; + guard_free(tempfile); + ini_free(&toxini); return 0; } |