mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[CRT][ARM] Fix uninitialized variables caught by RTC
CORE-17613
This commit is contained in:
parent
0175e8f8dd
commit
11687e9e43
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,8 @@ __rt_div_worker(
|
|||
UINT3264 mask;
|
||||
UINT3264 quotient;
|
||||
#ifdef _SIGNED_DIV_
|
||||
int dividend_sign;
|
||||
int divisor_sign;
|
||||
int dividend_sign = 0;
|
||||
int divisor_sign = 0;
|
||||
#endif // _SIGNED_DIV_
|
||||
|
||||
if (divisor == 0)
|
||||
|
|
Loading…
Reference in a new issue