Remove unnecessary alloc.

This commit is contained in:
Michael Jumper 2013-12-11 13:48:41 -08:00
parent 56bb0b3740
commit e0450d0dc5

View File

@ -71,7 +71,7 @@ void guac_rdpdr_fs_process_query_both_directory_info(guac_rdpdr_device* device,
guac_rdp_fs_file* file; guac_rdp_fs_file* file;
wStream* output_stream = Stream_New(NULL, 256); wStream* output_stream;
int length = guac_utf8_strlen(entry_name); int length = guac_utf8_strlen(entry_name);
int utf16_length = length*2; int utf16_length = length*2;