From 27ce1a05e54c21fa1328d67a32d1f8163656ee4e Mon Sep 17 00:00:00 2001 From: Alecaddd Date: Mon, 3 Aug 2020 09:37:50 -0700 Subject: [PATCH] Hot Fix - wrong uint8 variable --- src/FileFormat/ZipArchiveHandler.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FileFormat/ZipArchiveHandler.vala b/src/FileFormat/ZipArchiveHandler.vala index 945acebb7..c3cb678ab 100644 --- a/src/FileFormat/ZipArchiveHandler.vala +++ b/src/FileFormat/ZipArchiveHandler.vala @@ -348,7 +348,7 @@ public class Akira.FileFormat.ZipArchiveHandler : GLib.Object { // Add the actual content of the file size_t bytes_read; - uint8[64] buffer = new uint8[64]; + uint8[] buffer = new uint8[64]; while (data_input_stream.read_all (buffer, out bytes_read)) { if (bytes_read <= 0) { break;