From: Niels Möller Date: Fri, 26 Apr 2013 11:57:08 +0000 (+0200) Subject: Use size_t for realloc functions. X-Git-Tag: nettle_3.0_release_20140607~249 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9460c81c186c3f0cb10e16d72dcd8aaa8001d21;p=thirdparty%2Fnettle.git Use size_t for realloc functions. --- diff --git a/nettle-types.h b/nettle-types.h index cd6ad15d..18aeeeef 100644 --- a/nettle-types.h +++ b/nettle-types.h @@ -40,7 +40,7 @@ typedef void nettle_random_func(void *ctx, typedef void nettle_progress_func(void *ctx, int c); /* Realloc function, used by struct nettle_buffer. */ -typedef void *nettle_realloc_func(void *ctx, void *p, unsigned length); +typedef void *nettle_realloc_func(void *ctx, void *p, size_t length); /* Ciphers */ typedef void nettle_set_key_func(void *ctx, diff --git a/realloc.c b/realloc.c index 5c12a0b9..705ff185 100644 --- a/realloc.c +++ b/realloc.c @@ -35,7 +35,7 @@ totally free the object, it is allowed to return a valid pointer. */ void * -nettle_realloc(void *ctx UNUSED, void *p, unsigned length) +nettle_realloc(void *ctx UNUSED, void *p, size_t length) { if (length > 0) return realloc(p, length); @@ -45,7 +45,7 @@ nettle_realloc(void *ctx UNUSED, void *p, unsigned length) } void * -nettle_xrealloc(void *ctx UNUSED, void *p, unsigned length) +nettle_xrealloc(void *ctx UNUSED, void *p, size_t length) { if (length > 0) {