diff options
author | ache <ache@FreeBSD.org> | 1998-05-15 23:23:45 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-05-15 23:23:45 +0000 |
commit | 2fc3df68b4077ab1f361088b3b428c37a0da30bf (patch) | |
tree | d39174eaa80250efa5c4c195bef6a411816c493c /mail/procmail/files | |
parent | 7fcf3cfaa32c92c98141a7b64229f6569d0c9eac (diff) | |
download | FreeBSD-ports-2fc3df68b4077ab1f361088b3b428c37a0da30bf.zip FreeBSD-ports-2fc3df68b4077ab1f361088b3b428c37a0da30bf.tar.gz |
Fix big messages realloc strategy
Diffstat (limited to 'mail/procmail/files')
-rw-r--r-- | mail/procmail/files/patch-ae | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/mail/procmail/files/patch-ae b/mail/procmail/files/patch-ae new file mode 100644 index 0000000..21a510e --- /dev/null +++ b/mail/procmail/files/patch-ae @@ -0,0 +1,32 @@ +*** src/pipes.c.bak Mon Apr 28 04:27:47 1997 +--- src/pipes.c Sat May 16 03:22:43 1998 +*************** +*** 234,239 **** +--- 234,240 ---- + + char*readdyn(bf,filled)char*bf;long*const filled; + { int i;long oldsize; ++ long fetched = *filled; + oldsize= *filled; + goto jumpin; + do +*************** +*** 243,249 **** + if((size_t)*filled>=(size_t)(*filled+BLKSIZ)) + lcking|=lck_MEMORY,nomemerr(); + #endif +! bf=realloc(bf,*filled+BLKSIZ); /* dynamically adjust the buffer size */ + jumpback:; + } + while(0<(i=rread(STDIN,bf+*filled,BLKSIZ))); /* read mail */ +--- 244,253 ---- + if((size_t)*filled>=(size_t)(*filled+BLKSIZ)) + lcking|=lck_MEMORY,nomemerr(); + #endif +! if( fetched - *filled < BLKSIZ ) { +! fetched += 4194304; +! bf=realloc(bf,fetched); /* dynamically adjust the buffer size */ +! } + jumpback:; + } + while(0<(i=rread(STDIN,bf+*filled,BLKSIZ))); /* read mail */ |