* DiskImage: match new[] with delete[]
Signed-off-by: Sven Schnelle <fz@stackframe.org>
* st_tos: match new[] with delete[]
Signed-off-by: Sven Schnelle <fz@stackframe.org>
* scaler: fix calloc arguments
The first argument is the number of members, the second
argument the size of each member. Swap the arguments to
the correct order to prevent warings with newer compilers.
Signed-off-by: Sven Schnelle <fz@stackframe.org>
---------
Signed-off-by: Sven Schnelle <fz@stackframe.org>
Replace file descriptor with a file stream in preparation for supporting
zipped files.
The API to miniz requires the use of file streams and since a file
descriptor can easily be extracted from a stream using `fileno` it's
much more convenient to use file streams everywhere.