diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-27 13:49:39 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-27 13:49:39 +0000 |
commit | f84f607d3bf7b1437267d801d5d0f1950b3d8adf (patch) | |
tree | 1e87f84fdff02b674311696dcbd16d20065450bf | |
parent | 805ca49f0a4fb1abc3f3499c325115b1d4e48384 (diff) | |
download | perl-f84f607d3bf7b1437267d801d5d0f1950b3d8adf.tar.gz |
Minuscule cleanup of the integer overflow patch.
p4raw-id: //depot/cfgperl@3801
-rw-r--r-- | util.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -2827,7 +2827,6 @@ Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen) register UV retval = 0; register UV n; register I32 d = 0; - register bool seeno = FALSE; register bool overflow = FALSE; for (; len-- && *s; s++) { @@ -2835,9 +2834,9 @@ Perl_scan_oct(pTHX_ char *start, I32 len, I32 *retlen) if (*s == '_') continue; else { - /* Allow \octal to work DWIM way (that is, stop scanning - * as soon as non-octal characters seen, complain only iff - * someone seems to want to use the eight and nine. */ + /* Allow \octal to work the DWIM way (that is, stop scanning + * as soon as non-octal characters are seen, complain only iff + * someone seems to want to use the digits eight and nine). */ if (*s == '8' || *s == '9') { dTHR; if (ckWARN(WARN_OCTAL)) |