diff options
author | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2014-07-26 13:33:23 -0700 |
---|---|---|
committer | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2014-07-26 13:33:23 -0700 |
commit | 27055d5762d23ae3996e7e41ef45ef6454fa2d65 (patch) | |
tree | b45025733988961e08bde0c7e495f73c939a9937 /rdp/rdp_tcp.c | |
parent | fde7be5151f7db096610cb59ca964e22e6af79fb (diff) | |
download | xrdp-proprietary-27055d5762d23ae3996e7e41ef45ef6454fa2d65.tar.gz xrdp-proprietary-27055d5762d23ae3996e7e41ef45ef6454fa2d65.zip |
coverity: improper use of negative value
Diffstat (limited to 'rdp/rdp_tcp.c')
-rw-r--r-- | rdp/rdp_tcp.c | 3 |
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) { |