[PATCH] tools/winedump: update a FIXME

David Kahurani k.kahurani at gmail.com
Tue Oct 12 07:31:17 CDT 2021


It is not considered worthwhile freeing memory in short-lived
programs

Signed-off-by: David Kahurani <k.kahurani at gmail.com>
---
 tools/winedump/msmangle.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tools/winedump/msmangle.c b/tools/winedump/msmangle.c
index d22f471..80247f8 100644
--- a/tools/winedump/msmangle.c
+++ b/tools/winedump/msmangle.c
@@ -531,7 +531,9 @@ static char *demangle_datatype (char **str, compound_type *ct,
 	  if (*iter == '6')
 	  {
 	      int sub_expressions = 0;
-              /* FIXME: there are tons of memory leaks here */
+	      /* FIXME: there are tons of memory leaks here which are not
+	       * not worthwhile to fix since this program is short-lived.
+	       */
 	      /* FIXME: this is still broken in some cases and it has to be
 	       * merged with the function prototype parsing above...
 	       */
-- 
2.33.0




More information about the wine-devel mailing list