92ec49aca6
Bug Fixes: - The download overlap checking was incorrectly detecting mismatches. - A bug in the network queue caused frequent crashes. - A bug in the event timing caused failures after 25 days uptime. - A stalling issue with TLS connections. - The search retry timeouts weren't accepted. - The order of items in the search history was wrong. - The quick-connect limit wasn't respected causing too frequent connection attempts during startup. - Removed incorrect use of SF_NODISKIO flag for sendfile() on FreeBSD. - Fixed crash that could be triggered by changing the listening port temporarily to zero. - iconv() was not used correctly which could cause wrong conversions for longer strings. - Generated filenames weren't properly restricted in length which could cause crashes. - There was a compile issue on NetBSD caused by namespace pollution. - Added workaround for the issue that on Solaris only the file descriptors 0..255 can be used for stdio. Improvements: - Finished downloads are now seeded for the whole session or until they are manually purged, if partial file-sharing is enabled. - Server-side support for Tigertree hashes and THEX thanks to patches provided by Martijn van Oosterhout. - Improved spam filters.
13 lines
531 B
Text
13 lines
531 B
Text
$NetBSD: patch-ac,v 1.6 2007/10/14 08:32:19 adam Exp $
|
|
|
|
--- src/if/gui_property.c.orig 2007-07-07 06:21:34.000000000 +0200
|
|
+++ src/if/gui_property.c
|
|
@@ -2434,7 +2434,7 @@ gui_prop_shutdown(void) {
|
|
}
|
|
|
|
for (n = 0; n < GUI_PROPERTY_NUM; n ++) {
|
|
- if (gui_property->props[n].type == PROP_TYPE_STRING) {
|
|
+ if (gui_property->props[n].type == gg_PROP_TYPE_STRING) {
|
|
gchar **p = gui_property->props[n].data.string.value;
|
|
struct event *e = gui_property->props[n].ev_changed;
|
|
G_FREE_NULL(*p);
|