Merge pull request #372 from proski/gcc5-warnings

Fix warnings reported by gcc 5.3.0 on Mac OS
ulab-next-nosound
jsorg71 8 years ago
commit f31b5a178b

@ -2382,6 +2382,11 @@ clipboard_event_property_notify(XEvent *xevent)
AnyPropertyType, &actual_type_return, &actual_format_return, AnyPropertyType, &actual_type_return, &actual_format_return,
&nitems_returned, &bytes_left, &data); &nitems_returned, &bytes_left, &data);
if (rv != Success)
{
return 1;
}
if (data != 0) if (data != 0)
{ {
XFree(data); XFree(data);
@ -2425,6 +2430,11 @@ clipboard_event_property_notify(XEvent *xevent)
AnyPropertyType, &actual_type_return, &actual_format_return, AnyPropertyType, &actual_type_return, &actual_format_return,
&nitems_returned, &bytes_left, &data); &nitems_returned, &bytes_left, &data);
if (rv != Success)
{
return 1;
}
format_in_bytes = FORMAT_TO_BYTES(actual_format_return); format_in_bytes = FORMAT_TO_BYTES(actual_format_return);
new_data_len = nitems_returned * format_in_bytes; new_data_len = nitems_returned * format_in_bytes;
cptr = (char *) g_malloc(g_clip_s2c.total_bytes + new_data_len, 0); cptr = (char *) g_malloc(g_clip_s2c.total_bytes + new_data_len, 0);

@ -890,22 +890,14 @@ dev_redir_proc_query_dir_response(IRP *irp,
XRDP_INODE *xinode; XRDP_INODE *xinode;
tui32 Length; tui32 Length;
tui32 NextEntryOffset;
tui64 CreationTime; tui64 CreationTime;
tui64 LastAccessTime; tui64 LastAccessTime;
tui64 LastWriteTime; tui64 LastWriteTime;
tui64 ChangeTime;
tui64 EndOfFile; tui64 EndOfFile;
tui32 FileAttributes; tui32 FileAttributes;
tui32 FileNameLength; tui32 FileNameLength;
tui32 status; tui32 status;
#ifdef USE_SHORT_NAMES_IN_DIR_LISTING
tui32 EaSize;
tui8 ShortNameLength;
tui8 Reserved;
#endif
char filename[256]; char filename[256];
int i = 0; int i = 0;
@ -935,21 +927,21 @@ dev_redir_proc_query_dir_response(IRP *irp,
{ {
log_debug("processing FILE_DIRECTORY_INFORMATION structs"); log_debug("processing FILE_DIRECTORY_INFORMATION structs");
xstream_rd_u32_le(s_in, NextEntryOffset); xstream_seek(s_in, 4); /* NextEntryOffset */
xstream_seek(s_in, 4); /* FileIndex */ xstream_seek(s_in, 4); /* FileIndex */
xstream_rd_u64_le(s_in, CreationTime); xstream_rd_u64_le(s_in, CreationTime);
xstream_rd_u64_le(s_in, LastAccessTime); xstream_rd_u64_le(s_in, LastAccessTime);
xstream_rd_u64_le(s_in, LastWriteTime); xstream_rd_u64_le(s_in, LastWriteTime);
xstream_rd_u64_le(s_in, ChangeTime); xstream_seek(s_in, 8); /* ChangeTime */
xstream_rd_u64_le(s_in, EndOfFile); xstream_rd_u64_le(s_in, EndOfFile);
xstream_seek(s_in, 8); /* AllocationSize */ xstream_seek(s_in, 8); /* AllocationSize */
xstream_rd_u32_le(s_in, FileAttributes); xstream_rd_u32_le(s_in, FileAttributes);
xstream_rd_u32_le(s_in, FileNameLength); xstream_rd_u32_le(s_in, FileNameLength);
#ifdef USE_SHORT_NAMES_IN_DIR_LISTING #ifdef USE_SHORT_NAMES_IN_DIR_LISTING
xstream_rd_u32_le(s_in, EaSize); xstream_seek(s_in, 4); /* EaSize */
xstream_rd_u8(s_in, ShortNameLength); xstream_seek(s_in, 1); /* ShortNameLength */
xstream_rd_u8(s_in, Reserved); xstream_seek(s_in, 1); /* Reserved */
xstream_seek(s_in, 23); /* ShortName in Unicode */ xstream_seek(s_in, 23); /* ShortName in Unicode */
#endif #endif
devredir_cvt_from_unicode_len(filename, s_in->p, FileNameLength); devredir_cvt_from_unicode_len(filename, s_in->p, FileNameLength);
@ -959,11 +951,9 @@ dev_redir_proc_query_dir_response(IRP *irp,
#else #else
i += 64 + FileNameLength; i += 64 + FileNameLength;
#endif #endif
//log_debug("NextEntryOffset: 0x%x", NextEntryOffset);
//log_debug("CreationTime: 0x%llx", CreationTime); //log_debug("CreationTime: 0x%llx", CreationTime);
//log_debug("LastAccessTime: 0x%llx", LastAccessTime); //log_debug("LastAccessTime: 0x%llx", LastAccessTime);
//log_debug("LastWriteTime: 0x%llx", LastWriteTime); //log_debug("LastWriteTime: 0x%llx", LastWriteTime);
//log_debug("ChangeTime: 0x%llx", ChangeTime);
//log_debug("EndOfFile: %lld", EndOfFile); //log_debug("EndOfFile: %lld", EndOfFile);
//log_debug("FileAttributes: 0x%x", FileAttributes); //log_debug("FileAttributes: 0x%x", FileAttributes);
#ifdef USE_SHORT_NAMES_IN_DIR_LISTING #ifdef USE_SHORT_NAMES_IN_DIR_LISTING
@ -1484,7 +1474,6 @@ devredir_cvt_from_unicode_len(char *path, char *unicode, int len)
char *dest; char *dest;
char *dest_saved; char *dest_saved;
char *src; char *src;
int rv;
int i; int i;
int bytes_to_alloc; int bytes_to_alloc;
int max_bytes; int max_bytes;
@ -1509,7 +1498,7 @@ devredir_cvt_from_unicode_len(char *path, char *unicode, int len)
max_bytes = wcstombs(NULL, (wchar_t *) dest_saved, 0); max_bytes = wcstombs(NULL, (wchar_t *) dest_saved, 0);
if (max_bytes > 0) if (max_bytes > 0)
{ {
rv = wcstombs(path, (wchar_t *) dest_saved, max_bytes); wcstombs(path, (wchar_t *) dest_saved, max_bytes);
path[max_bytes] = 0; path[max_bytes] = 0;
} }

@ -480,17 +480,11 @@ get_display_num_from_display(char *display_text)
{ {
int index; int index;
int mode; int mode;
int host_index;
int disp_index; int disp_index;
int scre_index;
char host[256];
char disp[256]; char disp[256];
char scre[256];
index = 0; index = 0;
host_index = 0;
disp_index = 0; disp_index = 0;
scre_index = 0;
mode = 0; mode = 0;
while (display_text[index] != 0) while (display_text[index] != 0)
@ -503,27 +497,15 @@ get_display_num_from_display(char *display_text)
{ {
mode = 2; mode = 2;
} }
else if (mode == 0)
{
host[host_index] = display_text[index];
host_index++;
}
else if (mode == 1) else if (mode == 1)
{ {
disp[disp_index] = display_text[index]; disp[disp_index] = display_text[index];
disp_index++; disp_index++;
} }
else if (mode == 2)
{
scre[scre_index] = display_text[index];
scre_index++;
}
index++; index++;
} }
host[host_index] = 0;
disp[disp_index] = 0; disp[disp_index] = 0;
scre[scre_index] = 0;
return atoi(disp); return atoi(disp);
} }

@ -1236,7 +1236,7 @@ process_server_paint_rect_shmem_ex(struct mod *amod, struct stream *s)
g_free(lcrects); g_free(lcrects);
g_free(ldrects); g_free(ldrects);
return 0; return rv;
} }
/******************************************************************************/ /******************************************************************************/

Loading…
Cancel
Save