We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bc474 commit 27ce1a0Copy full SHA for 27ce1a0
src/FileFormat/ZipArchiveHandler.vala
@@ -348,7 +348,7 @@ public class Akira.FileFormat.ZipArchiveHandler : GLib.Object {
348
349
// Add the actual content of the file
350
size_t bytes_read;
351
- uint8[64] buffer = new uint8[64];
+ uint8[] buffer = new uint8[64];
352
while (data_input_stream.read_all (buffer, out bytes_read)) {
353
if (bytes_read <= 0) {
354
break;
0 commit comments