Clang was complaining about some variables possibly being uninitialized
when used. The warnings are bogus, but clang can't figure that out. This
silences the warnings.
Reviewed-by: Richard Levitte <levitte@openssl.org>
int i;
for (i = 0; i < 5; i++) {
- char *fspec;
+ char *fspec = NULL;
switch (i) {
case 0:
fspec = "e";
int test = 0;
int i;
int fail = 0;
- int prec;
- char *width;
+ int prec = -1;
+ char *width = "";
const double frac = 2.0/3.0;
char buf[80];