Skip to content

Commit

Permalink
increased buffer size from 512 to 8K
Browse files Browse the repository at this point in the history
  • Loading branch information
kwrodarmer committed Sep 23, 2016
1 parent 3d37908 commit c8c3402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/vdb-config/vdb-config.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ static rc_t KConfigNodePrintChildNames(bool xml, const KConfigNode* self,
rc_t rc = 0;
uint32_t count = 0;
int i = 0;
char buffer[512] = "";
char buffer[8192] = "";
size_t num_read = 0;
bool hasChildren = false;
bool hasData = false;
Expand Down

0 comments on commit c8c3402

Please sign in to comment.