[dovecot-cvs] dovecot/src/pop3 client.c,1.41,1.42
    cras at dovecot.org 
    cras at dovecot.org
       
    Wed Oct 13 15:32:56 EEST 2004
    
        - Previous message: [dovecot-cvs] dovecot/src/imap-login client-authenticate.c, 1.29,
	1.30
- Next message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.34,
	1.35 auth-client-connection.c, 1.12,
	1.13 auth-client-connection.h, 1.2,
	1.3 auth-client-interface.h, 1.8, 1.9 auth-master-connection.c,
	1.11, 1.12 auth-master-connection.h, 1.4,
	1.5 auth-master-interface.h, 1.5, NONE mech-anonymous.c, 1.5,
	1.6 mech-apop.c, 1.5, 1.6 mech-cram-md5.c, 1.12,
	1.13 mech-digest-md5.c, 1.25, 1.26 mech-login.c, 1.3,
	1.4 mech-ntlm.c, 1.6, 1.7 mech-plain.c, 1.21, 1.22 mech-rpa.c,
	1.5, 1.6 mech.c, 1.41, 1.42 mech.h, 1.22, 1.23 userdb.h, 1.10, 1.11
-  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
  
Update of /var/lib/cvs/dovecot/src/pop3
In directory talvi:/tmp/cvs-serv5830
Modified Files:
	client.c 
Log Message:
Crashfix
Index: client.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/pop3/client.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- client.c	10 Oct 2004 16:25:06 -0000	1.41
+++ client.c	13 Oct 2004 12:32:54 -0000	1.42
@@ -230,9 +230,7 @@
 	str_append(str, "\r\n");
 
 	ret = o_stream_send(client->output, str_data(str), str_len(str));
-	if (ret < 0)
-		client_destroy(client);
-	else {
+	if (ret >= 0) {
 		i_assert((size_t)ret == str_len(str));
 
 		if (o_stream_get_buffer_used_size(client->output) <
    
    
        
	- Previous message: [dovecot-cvs] dovecot/src/imap-login client-authenticate.c, 1.29,
	1.30
- Next message: [dovecot-cvs] dovecot/src/auth Makefile.am, 1.34,
	1.35 auth-client-connection.c, 1.12,
	1.13 auth-client-connection.h, 1.2,
	1.3 auth-client-interface.h, 1.8, 1.9 auth-master-connection.c,
	1.11, 1.12 auth-master-connection.h, 1.4,
	1.5 auth-master-interface.h, 1.5, NONE mech-anonymous.c, 1.5,
	1.6 mech-apop.c, 1.5, 1.6 mech-cram-md5.c, 1.12,
	1.13 mech-digest-md5.c, 1.25, 1.26 mech-login.c, 1.3,
	1.4 mech-ntlm.c, 1.6, 1.7 mech-plain.c, 1.21, 1.22 mech-rpa.c,
	1.5, 1.6 mech.c, 1.41, 1.42 mech.h, 1.22, 1.23 userdb.h, 1.10, 1.11
-  Messages sorted by: 
              [ date ]
              [ thread ]
              [ subject ]
              [ author ]
         
More information about the dovecot-cvs
mailing list