mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
31 lines
838 B
Diff
31 lines
838 B
Diff
From 792e99d66b40481fb81042d51a12c861d8b33b51 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= <nerv@dawncrow.de>
|
|
Date: Mon, 16 Nov 2015 22:36:38 +0100
|
|
Subject: winedump: Free debug string in case it was not freed in for-loop
|
|
(Coverity)
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Signed-off-by: André Hentschel <nerv@dawncrow.de>
|
|
---
|
|
tools/winedump/msc.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/tools/winedump/msc.c b/tools/winedump/msc.c
|
|
index 5890b29..3f1fd98 100644
|
|
--- a/tools/winedump/msc.c
|
|
+++ b/tools/winedump/msc.c
|
|
@@ -1378,6 +1378,8 @@ BOOL codeview_dump_symbols(const void* root, unsigned long size)
|
|
dump_data((const void*)sym, sym->generic.len + 2, " ");
|
|
}
|
|
}
|
|
+
|
|
+ free(curr_func);
|
|
return TRUE;
|
|
}
|
|
|
|
--
|
|
2.6.2
|
|
|