[dovecot-cvs] dovecot/src/lib istream-tee.c,1.2,1.3
tss at dovecot.org
tss at dovecot.org
Fri Mar 16 00:38:40 EET 2007
- Previous message: [dovecot-cvs] dovecot/src/plugins/fts fts-api-private.h, 1.8, 1.9 fts-api.c, 1.9, 1.10 fts-api.h, 1.7, 1.8 fts-storage.c, 1.16, 1.17
- Next message: [dovecot-cvs] dovecot/src/lib-index mailbox-list-index-private.h, 1.5, 1.6 mailbox-list-index-sync.c, 1.9, 1.10 mailbox-list-index.c, 1.8, 1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/cvs/dovecot/src/lib
In directory talvi:/tmp/cvs-serv30396
Modified Files:
istream-tee.c
Log Message:
Crashfix: Underlying stream's data pointer may change even if we didn't have
to read more data.
Index: istream-tee.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib/istream-tee.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- istream-tee.c 18 Nov 2006 14:06:35 -0000 1.2
+++ istream-tee.c 15 Mar 2007 22:38:37 -0000 1.3
@@ -118,7 +118,7 @@
tee_streams_update_buffer(tstream->tee);
}
- i_assert(stream->buffer == data);
+ stream->buffer = data;
ret = size - stream->pos;
stream->pos = size;
return ret;
- Previous message: [dovecot-cvs] dovecot/src/plugins/fts fts-api-private.h, 1.8, 1.9 fts-api.c, 1.9, 1.10 fts-api.h, 1.7, 1.8 fts-storage.c, 1.16, 1.17
- Next message: [dovecot-cvs] dovecot/src/lib-index mailbox-list-index-private.h, 1.5, 1.6 mailbox-list-index-sync.c, 1.9, 1.10 mailbox-list-index.c, 1.8, 1.9
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the dovecot-cvs
mailing list