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 d18644f commit a9da486Copy full SHA for a9da486
Ghostscript.NET/GhostscriptPipedOutput.cs
@@ -157,7 +157,7 @@ public void ReadGhostscriptPipeOutput(object state)
157
BinaryReader reader = new BinaryReader(_pipe);
158
159
// allocate memory space for the incoming output data
160
- byte[] buffer = new byte[1];
+ byte[] buffer = new byte[_pipe.InBufferSize];
161
162
int readCount = 0;
163
0 commit comments