|
From: <kin...@us...> - 2025-09-19 08:57:33
|
Revision: 7460
http://sourceforge.net/p/teem/code/7460
Author: kindlmann
Date: 2025-09-19 08:57:32 +0000 (Fri, 19 Sep 2025)
Log Message:
-----------
one less memory leak
Modified Paths:
--------------
teem/trunk/src/hest/argvHest.c
Modified: teem/trunk/src/hest/argvHest.c
===================================================================
--- teem/trunk/src/hest/argvHest.c 2025-09-19 08:54:38 UTC (rev 7459)
+++ teem/trunk/src/hest/argvHest.c 2025-09-19 08:57:32 UTC (rev 7460)
@@ -183,7 +183,9 @@
static void
hinDone(void *_hin) {
hestInput *hin = (hestInput *)_hin;
- /* nothing, for now*/
+ if (hin->rfile) {
+ airFclose(hin->rfile);
+ }
AIR_UNUSED(hin);
return;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|