Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public bool ExtractInstallShieldExecutable(string outputDirectory, bool includeD
if (overlayAddress < 0)
return false;

const int chunkSize = 64 * 1024;
const int chunkSize = 2048 * 1024; //Arbitrary buffer size
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove the comment

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alright. I wanted to leave it there so I remember that there isn't a need for this specific size, but fair enough.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed.

var reader = new Readers.InstallShieldExecutableFile();

lock (_dataSourceLock)
Expand Down