diff options
author | David Robillard <d@drobilla.net> | 2018-09-30 17:20:21 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-30 17:20:21 +0200 |
commit | f0bc2210cdcbb0d641e3a723ca23409afe615535 (patch) | |
tree | 98ac3edb553ef013096d204f633089a2e7af7744 /src/uri.c | |
parent | a5b040e33d00a8d6eab1ba8167f5ccaecbbfbc75 (diff) | |
download | serd-f0bc2210cdcbb0d641e3a723ca23409afe615535.tar.gz serd-f0bc2210cdcbb0d641e3a723ca23409afe615535.tar.bz2 serd-f0bc2210cdcbb0d641e3a723ca23409afe615535.zip |
Fix calloc argument order
Diffstat (limited to 'src/uri.c')
-rw-r--r-- | src/uri.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |