Static analyzers complain that a->size is never initialized

This commit is contained in:
Andras Fekete
2024-02-08 11:03:11 -05:00
parent 14830d0e09
commit 16b40b2f75

View File

@ -4851,7 +4851,7 @@ static void _sp_init_size(sp_int* a, unsigned int size)
#endif #endif
_sp_zero((sp_int*)am); _sp_zero((sp_int*)am);
am->size = size; a->size = size;
} }
/* Initialize the multi-precision number to be zero with a given max size. /* Initialize the multi-precision number to be zero with a given max size.