mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 17:00:51 +08:00
[CRT][ARM] Fix uninitialized variables caught by RTC
CORE-17613
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user