Browse Source

constrain fractional part to [0-9] (less confusing to static analysis); ok ian@

OPENBSD_6_4
djm 6 years ago
parent
commit
468ab01728
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      src/lib/libutil/fmt_scaled.c

+ 5
- 2
src/lib/libutil/fmt_scaled.c View File

@ -1,4 +1,4 @@
/* $OpenBSD: fmt_scaled.c,v 1.16 2017/03/16 02:40:46 dtucker Exp $ */
/* $OpenBSD: fmt_scaled.c,v 1.17 2018/05/14 04:39:04 djm Exp $ */
/*
* Copyright (c) 2001, 2002, 2003 Ian F. Darwin. All rights reserved.
@ -242,12 +242,15 @@ fmt_scaled(long long number, char *result)
fract = (10 * fract + 512) / 1024;
/* if the result would be >= 10, round main number */
if (fract == 10) {
if (fract >= 10) {
if (number >= 0)
number++;
else
number--;
fract = 0;
} else if (fract < 0) {
/* shouldn't happen */
fract = 0;
}
if (number == 0)


Loading…
Cancel
Save