summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libxrdp/xrdp_sec.c2
-rw-r--r--xrdp/xrdp_mm.c6
-rw-r--r--xrdp/xrdp_wm.c2
3 files changed, 4 insertions, 6 deletions
diff --git a/libxrdp/xrdp_sec.c b/libxrdp/xrdp_sec.c
index 4de6c9ed..0436edf2 100644
--- a/libxrdp/xrdp_sec.c
+++ b/libxrdp/xrdp_sec.c
@@ -265,7 +265,7 @@ xrdp_load_keyboard_layout(struct xrdp_client_info *client_info)
fd = g_file_open(keyboard_cfg_file);
- if (fd > 0)
+ if (fd >= 0)
{
int section_found = -1;
char section_rdp_layouts[256] = { 0 };
diff --git a/xrdp/xrdp_mm.c b/xrdp/xrdp_mm.c
index 4754ccaa..4c716d46 100644
--- a/xrdp/xrdp_mm.c
+++ b/xrdp/xrdp_mm.c
@@ -1310,7 +1310,7 @@ xrdp_mm_get_sesman_port(char *port, int port_bytes)
g_snprintf(cfg_file, 255, "%s/sesman.ini", XRDP_CFG_PATH);
fd = g_file_open(cfg_file);
- if (fd > 0)
+ if (fd >= 0)
{
names = list_create();
names->auto_free = 1;
@@ -1343,10 +1343,8 @@ xrdp_mm_get_sesman_port(char *port, int port_bytes)
list_delete(names);
list_delete(values);
- }
-
- if (fd != -1)
g_file_close(fd);
+ }
return 0;
}
diff --git a/xrdp/xrdp_wm.c b/xrdp/xrdp_wm.c
index 3d16fe63..8b26718d 100644
--- a/xrdp/xrdp_wm.c
+++ b/xrdp/xrdp_wm.c
@@ -405,7 +405,7 @@ xrdp_wm_load_static_colors_plus(struct xrdp_wm *self, char *autorun_name)
g_snprintf(cfg_file, 255, "%s/xrdp.ini", XRDP_CFG_PATH);
fd = g_file_open(cfg_file);
- if (fd > 0)
+ if (fd >= 0)
{
names = list_create();
names->auto_free = 1;