From 7268f036de98f773052cb4a4135cf95ee1dc5456 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 12 Sep 2023 08:07:49 +0200 Subject: [PATCH] Valgrind: Add missing error type Fixes: QTCREATORBUG-29600 Change-Id: Ia6b6549865f9940f2e93fbe998788d201a3550fa Reviewed-by: hjk --- src/plugins/valgrind/xmlprotocol/error.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/valgrind/xmlprotocol/error.h b/src/plugins/valgrind/xmlprotocol/error.h index 749d3b72613..a9dd3278b8f 100644 --- a/src/plugins/valgrind/xmlprotocol/error.h +++ b/src/plugins/valgrind/xmlprotocol/error.h @@ -37,7 +37,8 @@ enum MemcheckError Leak_DefinitelyLost, Leak_PossiblyLost, Leak_StillReachable, - Leak_IndirectlyLost + Leak_IndirectlyLost, + ReallocSizeZero }; Q_ENUM_NS(MemcheckError);