put back a g_free()
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Mon, 1 Apr 2002 10:40:31 +0000 (10:40 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Mon, 1 Apr 2002 10:40:31 +0000 (10:40 +0000)
ChangeLog.claws
configure.in
src/summaryview.c

index d337dc537b1c50fbe1270136f50477cc061c13a2..eff46c6d10f0099cac4f7bdcc24739b3019e0c01 100644 (file)
@@ -1,3 +1,8 @@
+2002-04-01 [alfons]    0.7.4claws57
+       
+       * src/summaryview.c
+               put back g_free() 
+
 2002-04-01 [paul]      0.7.4claws56
 
        * sync with 0.7.4cvs25
index 1140f05fd398d7e33fffa0895f845d86116dfc1e..e0e3e3d02b16b94a9ef6b46ed8f900bdb495d55e 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=7
 MICRO_VERSION=4
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws56
+EXTRA_VERSION=claws57
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 0fabb1b1cbc7b026c327d546e375bedac2d47926..feb139f5f1f8c91a49014c3a41b0ba88121e6d13 100644 (file)
@@ -2260,7 +2260,8 @@ static void summary_set_header(SummaryView *summaryview, gchar *text[],
                }
 
                if (account_find_from_address(addr)) {
-                       addr = summary_complete_address(msginfo->to); 
+                       addr = summary_complete_address(msginfo->to);
+                       g_free(to);
                        to   = g_strconcat("-->", addr == NULL ? msginfo->to : addr, NULL);
                        text[col_pos[S_COL_FROM]] = to;
                }