[dovecot-cvs] dovecot/src/lib-storage mail-search.c,1.16,1.17
cras at dovecot.org
cras at dovecot.org
Fri Oct 8 20:51:51 EEST 2004
- Previous message: [dovecot-cvs] dovecot/src/lib-ntlm ntlm-encrypt.c, 1.6,
1.7 ntlm-message.c, 1.4, 1.5
- Next message: [dovecot-cvs] dovecot/src/lib-index mail-cache-compress.c, 1.22,
1.23 mail-cache-fields.c, 1.7, 1.8 mail-cache-lookup.c, 1.23,
1.24 mail-cache-transaction.c, 1.28, 1.29 mail-cache.c, 1.47,
1.48 mail-index-sync.c, 1.33, 1.34 mail-index-transaction.c,
1.30, 1.31 mail-index-view-sync.c, 1.21,
1.22 mail-index-view.c, 1.21, 1.22 mail-index.c, 1.150,
1.151 mail-transaction-log.c, 1.61, 1.62
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/lib-storage
In directory talvi:/tmp/cvs-serv10130/lib-storage
Modified Files:
mail-search.c
Log Message:
Buffer API change: we no longer support limited sized buffers where
writes past limit wouldn't kill the process. They weren't used hardly
anywhere, they could have hidden bugs and the code for handling them was too
complex.
This also changed base64 and hex-binary APIs.
Index: mail-search.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-storage/mail-search.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- mail-search.c 6 Aug 2004 18:05:45 -0000 1.16
+++ mail-search.c 8 Oct 2004 17:51:49 -0000 1.17
@@ -163,8 +163,7 @@
*have_headers = *have_body = have_text = FALSE;
- headers = buffer_create_dynamic(pool_datastack_create(),
- 128, (size_t)-1);
+ headers = buffer_create_dynamic(pool_datastack_create(), 128);
for (; args != NULL; args = args->next) {
search_arg_analyze(args, headers, have_headers,
have_body, &have_text);
- Previous message: [dovecot-cvs] dovecot/src/lib-ntlm ntlm-encrypt.c, 1.6,
1.7 ntlm-message.c, 1.4, 1.5
- Next message: [dovecot-cvs] dovecot/src/lib-index mail-cache-compress.c, 1.22,
1.23 mail-cache-fields.c, 1.7, 1.8 mail-cache-lookup.c, 1.23,
1.24 mail-cache-transaction.c, 1.28, 1.29 mail-cache.c, 1.47,
1.48 mail-index-sync.c, 1.33, 1.34 mail-index-transaction.c,
1.30, 1.31 mail-index-view-sync.c, 1.21,
1.22 mail-index-view.c, 1.21, 1.22 mail-index.c, 1.150,
1.151 mail-transaction-log.c, 1.61, 1.62
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list