From bd888246084de50dd7fc96464064e02b146147df Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Wed, 28 May 2014 11:53:19 -0400 Subject: Align to sizeof(void *) instead of fixed 4 --- src/c/request.c | 4 ++-- src/c/urweb.c | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/c') diff --git a/src/c/request.c b/src/c/request.c index 813d967c..5aee7bbe 100644 --- a/src/c/request.c +++ b/src/c/request.c @@ -212,10 +212,10 @@ void uw_request_init(uw_app *app, uw_loggers* ls) { } -typedef struct uw_rc { +struct uw_rc { size_t path_copy_size, queryString_size; char *path_copy, *queryString; -} *uw_request_context; +}; uw_request_context uw_new_request_context(void) { uw_request_context r = malloc(sizeof(struct uw_rc)); diff --git a/src/c/urweb.c b/src/c/urweb.c index a1583f0c..e337424a 100644 --- a/src/c/urweb.c +++ b/src/c/urweb.c @@ -1259,8 +1259,8 @@ void uw_end_initializing(uw_context ctx) { static void align_heap(uw_context ctx) { size_t posn = ctx->heap.front - ctx->heap.start; - if (posn % 4 != 0) { - size_t bump = 4 - posn % 4; + if (posn % sizeof(void *) != 0) { + size_t bump = sizeof(void *) - posn % sizeof(void *); uw_check_heap(ctx, bump); ctx->heap.front += bump; } @@ -1275,7 +1275,7 @@ void *uw_malloc(uw_context ctx, size_t len) { void *result; if (ctx->amInitializing) { - int error = posix_memalign(&result, 4, len); + int error = posix_memalign(&result, sizeof(void *), len); if (!error) return result; -- cgit v1.2.3