Release memory of transfer speed strings
This commit is contained in:
parent
c48e7b869b
commit
7dd4fe8ac4
1 changed files with 4 additions and 1 deletions
|
@ -97,7 +97,7 @@ midori_transferbar_download_notify_progress_cb (WebKitDownload* download,
|
|||
if (time != *last_time)
|
||||
transfer = g_format_size_for_display ((size - *last_size) / (time - *last_time));
|
||||
else
|
||||
transfer = "?B";
|
||||
transfer = g_strup ("?B");
|
||||
/* i18n: Download tooltip, 4KB of 43MB, 130KB/s */
|
||||
size_text = g_strdup_printf (_("%s of %s, %s/s"), current, total, transfer);
|
||||
if (time - *last_time > 5.0)
|
||||
|
@ -111,6 +111,9 @@ midori_transferbar_download_notify_progress_cb (WebKitDownload* download,
|
|||
gtk_progress_bar_get_text (GTK_PROGRESS_BAR (progress)),
|
||||
size_text);
|
||||
gtk_widget_set_tooltip_text (progress, text);
|
||||
g_free (size_text);
|
||||
g_free (transfer);
|
||||
g_free (text);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue