mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Ignore floating point division by zero (fixes #224)
This commit is contained in:
parent
4a3442ca80
commit
7eb9ce780f
1 changed files with 1 additions and 1 deletions
|
|
@ -101,7 +101,7 @@ begin
|
|||
Randomize;
|
||||
|
||||
// Disable invalid floating point operation exception
|
||||
SetExceptionMask(GetExceptionMask + [exInvalidOp]);
|
||||
SetExceptionMask(GetExceptionMask + [exInvalidOp, exZeroDivide]);
|
||||
|
||||
{$IF DEFINED(NIGHTLY_BUILD)}
|
||||
InitLineInfo;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue