From 0a0f485c70d8571a954cb5fccc53e104540b9a30 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Sat, 21 May 2011 15:23:59 +0000 Subject: [PATCH] * sizeof(*ptr) instead of sizeof(type) --- php_http_buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php_http_buffer.c b/php_http_buffer.c index 84e5bbd..41fd48a 100644 --- a/php_http_buffer.c +++ b/php_http_buffer.c @@ -7,7 +7,7 @@ PHP_HTTP_BUFFER_API php_http_buffer_t *php_http_buffer_init_ex(php_http_buffer_t *buf, size_t chunk_size, int flags) { if (!buf) { - buf = pemalloc(sizeof(php_http_buffer_t), flags & PHP_HTTP_BUFFER_INIT_PERSISTENT); + buf = pemalloc(sizeof(*buf), flags & PHP_HTTP_BUFFER_INIT_PERSISTENT); } if (buf) { -- 2.30.2