Commit 8ce7850
committed
Work around false-positive warning.
The warning was:
```
s_mp_exptmod_fast.c: In function ‘s_mp_exptmod_fast’:
s_mp_exptmod_fast.c:188:21: warning: ‘mp’ may be used uninitialized in this function [-Wmaybe-uninitialized]
188 | if ((err = redux(&res, P, mp)) != MP_OKAY) goto LBL_RES;
| ^
s_mp_exptmod_fast.c:25:18: note: ‘mp’ was declared here
25 | mp_digit buf, mp;
| ^
```
Signed-off-by: Steffen Jaeckel <s@jaeckel.eu>1 parent 68c1463 commit 8ce7850
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
| 25 | + | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| |||
0 commit comments