aboutsummaryrefslogtreecommitdiffstats
path: root/alloc.h
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2015-01-15 11:50:16 +0000
committerTatsuya Kinoshita <tats@debian.org>2015-01-15 11:50:16 +0000
commitee0405c689cc8ca44522ed5dd3750cdc0c6e4ce4 (patch)
treedce7d671c0b681460d5428d0126b90792ea1214d /alloc.h
parentAdd overflow detection (diff)
downloadw3m-ee0405c689cc8ca44522ed5dd3750cdc0c6e4ce4.tar.gz
w3m-ee0405c689cc8ca44522ed5dd3750cdc0c6e4ce4.zip
Drop C99 features
Diffstat (limited to 'alloc.h')
-rw-r--r--alloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/alloc.h b/alloc.h
index 7d23414..fa0d391 100644
--- a/alloc.h
+++ b/alloc.h
@@ -13,9 +13,9 @@
static inline size_t
z_mult_no_oflow_(size_t n, size_t size)
{
- if (size != 0 && n > SIZE_MAX / size) {
+ if (size != 0 && n > ULONG_MAX / size) {
fprintf(stderr,
- "w3m: overflow in malloc, %zu*%zu\n", n, size);
+ "w3m: overflow in malloc, %lu*%lu\n", (unsigned long)n, (unsigned long)size);
exit(1);
}
return n * size;