fix bug in Symbian UDP socket (init err to 0)

This commit is contained in:
Alfred E. Heggestad 2011-09-06 20:44:56 +00:00
parent 92887e9713
commit a3ef56ff0b

View file

@ -194,7 +194,7 @@ int udp_sock::send(const struct sa *dst, struct mbuf *mb)
{
struct sa hdst;
TRequestStatus stat;
int err;
int err = 0;
DEBUG_INFO("udp_sock::send %u bytes to %J\n", mbuf_get_left(mb), dst);