[dovecot-cvs] dovecot/src/lib-storage/index/dbox dbox-mail.c, 1.9.2.3, 1.9.2.4

tss at dovecot.org tss at dovecot.org
Sun Oct 15 11:35:58 UTC 2006


Update of /var/lib/cvs/dovecot/src/lib-storage/index/dbox
In directory talvi:/tmp/cvs-serv13652/dbox

Modified Files:
      Tag: branch_1_0
	dbox-mail.c 
Log Message:
We added received date as time_t instead of uint32_t which crashed with
64bit systems.



Index: dbox-mail.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-storage/index/dbox/dbox-mail.c,v
retrieving revision 1.9.2.3
retrieving revision 1.9.2.4
diff -u -d -r1.9.2.3 -r1.9.2.4
--- dbox-mail.c	23 Jul 2006 22:41:42 -0000	1.9.2.3
+++ dbox-mail.c	15 Oct 2006 10:35:56 -0000	1.9.2.4
@@ -152,6 +152,7 @@
 	struct index_mail *mail = (struct index_mail *)_mail;
 	struct index_mail_data *data = &mail->data;
 	uoff_t offset;
+	uint32_t t;
 
 	(void)index_mail_get_received_date(_mail);
 	if (data->received_date != (time_t)-1)
@@ -165,8 +166,8 @@
 		data->received_date = 0;
 	}
 
-	index_mail_cache_add(mail, MAIL_CACHE_RECEIVED_DATE,
-			     &data->received_date, sizeof(data->received_date));
+	t = data->received_date;
+	index_mail_cache_add(mail, MAIL_CACHE_RECEIVED_DATE, &t, sizeof(t));
 	return data->received_date;
 }
 



More information about the dovecot-cvs mailing list