Skip to content

Commit

Permalink
Initialize the output buffer immediately
Browse files Browse the repository at this point in the history
Prevents issue #135
  • Loading branch information
jstedfast committed May 4, 2015
1 parent d52c996 commit e957b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MimeKit/IO/Filters/MimeFilterBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ namespace MimeKit.IO.Filters {
/// </remarks>
public abstract class MimeFilterBase : IMimeFilter
{
byte[] output = new byte[4096];
byte[] preload = null;
byte[] output = null;
byte[] inbuf = null;
int preloadLength;

Expand Down

0 comments on commit e957b1c

Please sign in to comment.