Skip to content
Snippets Groups Projects
Commit 805384f3 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Even more paranoia added.

Rev: lib/modules/SSL.pmod/sslfile.pike:1.8
parent 2cc2d0ba
No related branches found
Tags v8.0.1436
No related merge requests found
/* $Id: sslfile.pike,v 1.7 1997/11/19 22:36:40 grubba Exp $
/* $Id: sslfile.pike,v 1.8 1998/03/02 19:40:42 grubba Exp $
*
*/
......@@ -156,9 +156,11 @@ private void ssl_read_callback(mixed id, string s)
return;
}
}
int res = queue_write();
if (res)
die(res);
if (this_object()) {
int res = queue_write();
if (res)
die(res);
}
}
private void ssl_write_callback(mixed id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment