mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 01:05:42 +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 mask;
|
||||||
UINT3264 quotient;
|
UINT3264 quotient;
|
||||||
#ifdef _SIGNED_DIV_
|
#ifdef _SIGNED_DIV_
|
||||||
int dividend_sign;
|
int dividend_sign = 0;
|
||||||
int divisor_sign;
|
int divisor_sign = 0;
|
||||||
#endif // _SIGNED_DIV_
|
#endif // _SIGNED_DIV_
|
||||||
|
|
||||||
if (divisor == 0)
|
if (divisor == 0)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue