mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 01:49:41 +00:00
Fix DebugTrapHandler
The class should have used SIGTRAP, not SIGILL
This commit is contained in:
parent
c6c575aa49
commit
f2d726b092
4
trap.h
4
trap.h
@ -151,9 +151,9 @@ NAMESPACE_BEGIN(CryptoPP)
|
||||
/// <A HREF="http://seclists.org/oss-sec/2016/q3/520">CVE-2016-7420</A>
|
||||
|
||||
#if defined(CRYPTOPP_DOXYGEN_PROCESSING)
|
||||
class DebugTrapHandler : public SignalHandler<SIGILL, false> { };
|
||||
class DebugTrapHandler : public SignalHandler<SIGTRAP, false> { };
|
||||
#else
|
||||
typedef SignalHandler<SIGILL, false> DebugTrapHandler;
|
||||
typedef SignalHandler<SIGTRAP, false> DebugTrapHandler;
|
||||
#endif
|
||||
|
||||
#endif // Linux, Unix and Documentation
|
||||
|
Loading…
Reference in New Issue
Block a user