# HG changeset patch # User masneyb # Date 1178277765 0 # Node ID b099517df21a1a6918be8a3bb88d4de761b3ea46 # Parent 340d9398e01fec5d48b7aac3b02f7d254103cdd6 2007-5-4 Brian Masney * lib/protocols.c (_do_convert_string) - added two missing continue statements. This fixes a problem converting the string to a different character set. (from Shixin Zeng) (partially closes #156371) diff -r 340d9398e01f -r b099517df21a ChangeLog --- a/ChangeLog Fri Apr 27 19:07:47 2007 +0000 +++ b/ChangeLog Fri May 04 11:22:45 2007 +0000 @@ -1,3 +1,8 @@ +2007-5-4 Brian Masney + * lib/protocols.c (_do_convert_string) - added two missing continue + statements. This fixes a problem converting the string to a different + character set. (from Shixin Zeng) (partially closes #156371) + 2007-4-26 Brian Masney * src/uicommon/gftpui.c (_gftpui_common_trans_file_or_dir) - don't attempt to create the directory if it already exists. diff -r 340d9398e01f -r b099517df21a lib/protocols.c --- a/lib/protocols.c Fri Apr 27 19:07:47 2007 +0000 +++ b/lib/protocols.c Fri May 04 11:22:45 2007 +0000 @@ -559,6 +559,7 @@ request->iconv_from = NULL; _do_show_iconv_error (str, cur_charset, from_utf8, error); g_free (cur_charset); + continue; } request->iconv_from_initialized = 1; @@ -581,6 +582,7 @@ request->iconv_to = NULL; _do_show_iconv_error (str, cur_charset, from_utf8, error); g_free (cur_charset); + continue; } request->iconv_to_initialized = 1;