|
From: <kin...@us...> - 2025-09-28 07:53:29
|
Revision: 7504
http://sourceforge.net/p/teem/code/7504
Author: kindlmann
Date: 2025-09-28 07:53:28 +0000 (Sun, 28 Sep 2025)
Log Message:
-----------
maybe one less memory bug
Modified Paths:
--------------
teem/trunk/src/hest/methodsHest.c
Modified: teem/trunk/src/hest/methodsHest.c
===================================================================
--- teem/trunk/src/hest/methodsHest.c 2025-09-28 07:51:51 UTC (rev 7503)
+++ teem/trunk/src/hest/methodsHest.c 2025-09-28 07:53:28 UTC (rev 7504)
@@ -786,7 +786,6 @@
_ME_, opi, flag, MULTI_FLAG_SEP);
return (free(tbuff), 1);
}
- free(tbuff);
} else {
if (!strlen(opt[opi].flag)) {
biffAddf(HEST, "%s%sopt[%u].flag is zero length", _ME_, opi);
@@ -793,6 +792,7 @@
return (free(tbuff), 1);
}
}
+ free(tbuff);
if (hparm->respectDashBraceComments && (strchr(flag, '{') || strchr(flag, '}'))) {
biffAddf(HEST,
"%s%srequested hparm->respectDashBraceComments but opt[%u]'s flag "
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|