From: <fac...@us...> - 2006-08-20 14:57:12
|
Revision: 16900 Author: faceprint Date: 2006-08-20 07:56:53 -0700 (Sun, 20 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16900&view=rev Log Message: ----------- i think this should fix the blank version notices Modified Paths: -------------- trunk/gtk/plugins/relnot.c Modified: trunk/gtk/plugins/relnot.c =================================================================== --- trunk/gtk/plugins/relnot.c 2006-08-20 14:02:43 UTC (rev 16899) +++ trunk/gtk/plugins/relnot.c 2006-08-20 14:56:53 UTC (rev 16900) @@ -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; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |