summaryrefslogtreecommitdiffstats
path: root/rdp/rdp_tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'rdp/rdp_tcp.c')
-rw-r--r--rdp/rdp_tcp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/rdp/rdp_tcp.c b/rdp/rdp_tcp.c
index a919259e..f0a76d7d 100644
--- a/rdp/rdp_tcp.c
+++ b/rdp/rdp_tcp.c
@@ -157,7 +157,10 @@ int APP_CC
rdp_tcp_connect(struct rdp_tcp *self, char *ip, char *port)
{
DEBUG((" in rdp_tcp_connect ip %s port %s", ip, port));
+
self->sck = g_tcp_socket();
+ if (self->sck < 0)
+ return 1;
if (g_tcp_connect(self->sck, ip, port) == 0)
{