]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - ogg_afh.c
string.c para_realloc(): report requested size on realloc failures
[paraslash.git] / ogg_afh.c
index d295f2d31ba1a482f7c67a0d0663a1efc5c82867..1d2842874260cb2e6cefa35b52bd91054850ad77 100644 (file)
--- a/ogg_afh.c
+++ b/ogg_afh.c
@@ -81,11 +81,9 @@ static int ogg_compute_header_len(void)
                goto err2;
        }
        ret = -E_VORBIS;
-       if (vorbis_synthesis_headerin(&vi, &vc, &packet) < 0) {
+       if (vorbis_synthesis_headerin(&vi, &vc, &packet) < 0)
                goto err2;
-       } else
-               PARA_INFO_LOG("channels: %i, rate: %li\n", vi.channels,
-                       vi.rate);
+       PARA_INFO_LOG("channels: %i, rate: %li\n", vi.channels, vi.rate);
        ogg_stream_packetin(stream_out, &packet);
 
        ret = ogg_sync_pageout(sync_in, &page);
@@ -161,7 +159,7 @@ static void ogg_compute_chunk_table(double time_total)
        num = time_total / chunk_time + 3;
        PARA_DEBUG_LOG("chunk time: %g allocating %d chunk pointers\n",
                chunk_time, num);
-       chunk_table = para_malloc(num * sizeof(ogg_int64_t));
+       chunk_table = para_malloc(num * sizeof(size_t));
        chunk_table[0] = 0;
        max_chunk_len = 0;
        rewind(infile);