2003-12-08 Benoit Gr�goire <bock@step.polymtl.ca>

*src/import-export/log-replay/gnc-log-replay.c:  Increase read buffer size.
	Hopefully fixes 127421, but this time someone please do test the fix...


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9719 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Benoit Grégoire 2003-12-08 16:46:44 +00:00
parent 28571ed230
commit d8f2d79218
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-12-08 Benoit Grégoire <bock@step.polymtl.ca>
*src/import-export/log-replay/gnc-log-replay.c: Increase read buffer size.
Hopefully fixes 127421, but this time someone please do test the fix...
2003-12-01 Benoit Grégoire <bock@step.polymtl.ca>
* po/POTFILES.in: Remove reference to bin/strsub.c.

View File

@ -354,7 +354,7 @@ static void dump_split_record(split_record record)
/* File pointer must already be at the begining of a record */
static void process_trans_record( FILE *log_file)
{
char read_buf[256];
char read_buf[2048];
char *read_retval;
const char * record_end_str = "===== END";
int first_record=TRUE;