Skip to content

Commit

Permalink
Increased header buffer size
Browse files Browse the repository at this point in the history
  • Loading branch information
muhmud committed Aug 14, 2015
1 parent 9d840f0 commit 5047daf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/input.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ public int preventSplay = 0;
public int useHeaders = -1;
static int lineSize = -1;

public char headerLine1[16384 * 2] = { 0 };
public char headerLine1[16384 * 8] = { 0 };
public char* pHeaderLine1 = NULL;
public char headerLine2[16384 * 2] = { 0 };
public char headerLine2[16384 * 8] = { 0 };
public char* pHeaderLine2 = NULL;
public char headerLine3[16384 * 2] = { 0 };
public char headerLine3[16384 * 8] = { 0 };
public char* pHeaderLine3 = NULL;

/*
Expand Down

0 comments on commit 5047daf

Please sign in to comment.