Valgrind: Update error kinds

Update the error kind enum to cover all known error
types.

Fixes: QTCREATORBUG-31376
Change-Id: Icae72edfa941c7f1e8cfc1bdd039d01ff44dc28d
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2024-08-02 08:11:30 +02:00
parent 22ab5f8be7
commit 1977d1fa19

View File

@@ -38,7 +38,14 @@ enum MemcheckError
Leak_PossiblyLost,
Leak_StillReachable,
Leak_IndirectlyLost,
ReallocSizeZero
ReallocSizeZero,
InvalidSize,
InvalidSizeAndAlignment,
InvalidAlignment,
MismatchedAllocateDeallocateSize,
MismatchedAllocateDeallocateAlignment,
FishyValue,
// CoreMemError // questionable, seems to be unlikely to happen
};
Q_ENUM_NS(MemcheckError);