# HG changeset patch # User Nathan Walp # Date 1156085813 0 # Node ID fe8c31618e6fd688242e0c4249c72044d59fd5df # Parent c509b8b8a646d89f2c8ac9b963f4162c6d1ce5e9 [gaim-migrate @ 16900] i think this should fix the blank version notices committer: Tailor Script diff -r c509b8b8a646 -r fe8c31618e6f gtk/plugins/relnot.c --- a/gtk/plugins/relnot.c Sun Aug 20 14:02:43 2006 +0000 +++ b/gtk/plugins/relnot.c Sun Aug 20 14:56:53 2006 +0000 @@ -54,6 +54,12 @@ while(changelog[i] && changelog[i] != '\n') i++; + /* this basically means the version thing wasn't in the format we were + * looking for so sourceforge is probably having web server issues, and + * we should try again later */ + if(i == 0) + return; + cur_ver = g_strndup(changelog, i); changelog += i;