]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - mp3_afh.c
string: Rename para_malloc() -> alloc().
[paraslash.git] / mp3_afh.c
index 728b25b81f94aa177a1e74ae01fca07419f7fe90..1e105b7e377b4e79e2c11df1599fa4a7270ed6cf 100644 (file)
--- a/mp3_afh.c
+++ b/mp3_afh.c
@@ -348,7 +348,7 @@ static int mp3_rewrite_tags(const char *map, size_t mapsize,
        if (ret < 0)
                goto out;
        new_v2size = id3_tag_render(v2_tag, NULL);
-       v2_buffer = para_malloc(new_v2size);
+       v2_buffer = alloc(new_v2size);
        id3_tag_render(v2_tag, v2_buffer);
        PARA_INFO_LOG("writing v2 tag (%lu bytes)\n", new_v2size);
        ret = write_all(fd, (char *)v2_buffer, new_v2size);
@@ -598,7 +598,7 @@ static int mp3_read_info(unsigned char *map, size_t numbytes, int fd,
        const char *tag_versions[] = {"no", "id3v1", "id3v2", "id3v1+id3v2"};
 
        afhi->chunks_total = 0;
-       afhi->chunk_table = para_malloc(chunk_table_size * sizeof(uint32_t));
+       afhi->chunk_table = alloc(chunk_table_size * sizeof(uint32_t));
        while (1) {
                int freq, br;
                struct timeval tmp, cct; /* current chunk time */