diff options
-rw-r--r-- | src/env.c | 2 | ||||
-rw-r--r-- | src/node.c | 2 | ||||
-rw-r--r-- | src/serd_internal.h | 2 | ||||
-rw-r--r-- | src/uri.c | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -34,7 +34,7 @@ struct SerdEnvImpl { SerdEnv* serd_env_new(const SerdNode* base_uri) { - SerdEnv* env = (SerdEnv*)calloc(sizeof(struct SerdEnvImpl), 1); + SerdEnv* env = (SerdEnv*)calloc(1, sizeof(struct SerdEnvImpl)); if (env && base_uri) { serd_env_set_base_uri(env, base_uri); } @@ -360,7 +360,7 @@ SerdNode serd_node_new_blob(const void* buf, size_t size, bool wrap_lines) { const size_t len = (size + 2) / 3 * 4 + (wrap_lines * ((size - 1) / 57)); - uint8_t* str = (uint8_t*)calloc(1, len + 2); + uint8_t* str = (uint8_t*)calloc(len + 2, 1); SerdNode node = { str, len, len, 0, SERD_LITERAL }; for (size_t i = 0, j = 0; i < size; i += 3, j += 4) { uint8_t in[4] = { 0, 0, 0, 0 }; diff --git a/src/serd_internal.h b/src/serd_internal.h index 47b1ab98..0bc1cf42 100644 --- a/src/serd_internal.h +++ b/src/serd_internal.h @@ -176,7 +176,7 @@ static inline SerdStack serd_stack_new(size_t size) { SerdStack stack; - stack.buf = (uint8_t*)calloc(1, size); + stack.buf = (uint8_t*)calloc(size, 1); stack.buf_size = size; stack.size = SERD_STACK_BOTTOM; return stack; @@ -60,7 +60,7 @@ serd_file_uri_parse(const uint8_t* uri, uint8_t** hostname) return NULL; } if (hostname) { - *hostname = (uint8_t*)calloc(1, path - auth + 1); + *hostname = (uint8_t*)calloc(path - auth + 1, 1); memcpy(*hostname, auth, path - auth); } } |