[dovecot-cvs] dovecot/src/lib-storage/index/maildir maildir-save.c,1.27,1.28

cras at procontrol.fi cras at procontrol.fi
Sun Sep 21 20:21:40 EEST 2003


Update of /home/cvs/dovecot/src/lib-storage/index/maildir
In directory danu:/tmp/cvs-serv17131/lib-storage/index/maildir

Modified Files:
	maildir-save.c 
Log Message:
data_stack_pool split into two: unsafe_data_stack_pool which works like
before, and a new one which verifies that stack frame stays the same
whenever the pool is accessed.



Index: maildir-save.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-storage/index/maildir/maildir-save.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -d -r1.27 -r1.28
--- maildir-save.c	26 Jul 2003 16:55:11 -0000	1.27
+++ maildir-save.c	21 Sep 2003 16:21:38 -0000	1.28
@@ -46,7 +46,7 @@
 	fname++;
 
 	t_push();
-	output = o_stream_create_file(fd, data_stack_pool, 4096, FALSE);
+	output = o_stream_create_file(fd, pool_datastack_create(), 4096, FALSE);
 	o_stream_set_blocking(output, 60000, NULL, NULL);
 
 	if (!mail_storage_save(ibox->box.storage, path, input, output,



More information about the dovecot-cvs mailing list