mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
.0 isn't valid for integer formats
This commit is contained in:
parent
5b0e6dc342
commit
f3efed94e5
1 changed files with 10 additions and 6 deletions
|
@ -704,12 +704,15 @@ PF_sprintf (progs_t *pr)
|
|||
"%d", fmt_minwidth))
|
||||
>= sizeof (new_format))
|
||||
PR_Error (pr, "PF_sprintf: new_format overflowed?!");
|
||||
new_format[new_format_i++] = '.';
|
||||
if ((new_format_i += snprintf (new_format + new_format_i,
|
||||
sizeof (new_format) - new_format_i,
|
||||
"%d", fmt_precision))
|
||||
>= sizeof (new_format))
|
||||
PR_Error (pr, "PF_sprintf: new_format overflowed?!");
|
||||
if (fmt_type != 'i') {
|
||||
new_format[new_format_i++] = '.';
|
||||
if ((new_format_i += snprintf (new_format + new_format_i,
|
||||
sizeof (new_format)
|
||||
- new_format_i,
|
||||
"%d", fmt_precision))
|
||||
>= sizeof (new_format))
|
||||
PR_Error (pr, "PF_sprintf: new_format overflowed?!");
|
||||
}
|
||||
switch (fmt_type) {
|
||||
case 'i': new_format[new_format_i++] = 'd'; break;
|
||||
case 'f':
|
||||
|
@ -731,6 +734,7 @@ PF_sprintf (progs_t *pr)
|
|||
goto mallocerror;
|
||||
out = o;
|
||||
}
|
||||
printf ("%s %d %s\n", out, ret, new_format);
|
||||
out_size += ret;
|
||||
curarg += 3;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue