1
1

Fixies for search stuff in editor.

src/charsets.c:
 * fix error with recoding string for display
edit/editcmd.c:
 * fix core dump if search dialog calls some multiple times
 * fix memory leak
Этот коммит содержится в:
Slava Zanko 2009-04-17 18:08:51 +03:00
родитель 95e2fb90ef
Коммит 6568cad9df
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -2123,7 +2123,7 @@ edit_replace_cmd (WEdit *edit, int again)
void edit_search_cmd (WEdit * edit, int again)
{
static char *old = NULL;
char *exp = "";
char *exp = "", *old_exp=NULL;
if (!edit) {
g_free (old);
@ -2141,15 +2141,15 @@ void edit_search_cmd (WEdit * edit, int again)
if (exp && *exp){
GString *tmp = str_convert_to_display (exp);
if (tmp && tmp->len){
g_free(exp);
exp = tmp->str;
old_exp = exp = tmp->str;
}
if (tmp)
g_string_free(tmp,FALSE);
}
#endif /* HAVE_CHARSET */
edit_search_dialog (edit, &exp);
if (old_exp)
g_free(old_exp);
#ifdef HAVE_CHARSET
if (exp && *exp){

Просмотреть файл

@ -256,7 +256,7 @@ str_convert_to_display (char *str)
if (cp_display == cp_source)
return g_string_new(str);
conv = str_crt_conv_from (cp_source);
conv = str_crt_conv_from (cp_display);
buff = g_string_new("");
str_convert (conv, str, buff);