[CRT][ARM] Fix uninitialized variables caught by RTC

CORE-17613
This commit is contained in:
Stanislav Motylkov
2021-06-02 13:18:40 +03:00
parent 0175e8f8dd
commit 11687e9e43

View File

@@ -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)