* Matthew Toseland <[EMAIL PROTECTED]> [2007-12-21 13:30:35]: > NPE in talking to seednodes? If so, we need to release again .. can you show > me the original bug?
No... It was a file corruption problem (NPE was occurring during startup
while reading the peer file from disk)
>
> On Thursday 20 December 2007 18:26, you wrote:
> > Author: nextgens
> > Date: 2007-12-20 18:26:23 +0000 (Thu, 20 Dec 2007)
> > New Revision: 16746
> >
> > Modified:
> > trunk/freenet/src/freenet/node/Version.java
> > Log:
> > fix mYone's problem
> >
> > Modified: trunk/freenet/src/freenet/node/Version.java
> > ===================================================================
> > --- trunk/freenet/src/freenet/node/Version.java 2007-12-20 16:31:56 UTC
> > (rev
> 16745)
> > +++ trunk/freenet/src/freenet/node/Version.java 2007-12-20 18:26:23 UTC
> > (rev
> 16746)
> > @@ -308,7 +308,7 @@
> > public static final void seenVersion(String version) {
> > String[] v = Fields.commaList(version);
> >
> > - if (v.length < 3)
> > + if ((v == null) || (v.length < 3))
> > return; // bad, but that will be discovered elsewhere
> >
> > if (sameVersion(v)) {
> >
> > _______________________________________________
> > cvs mailing list
> > [EMAIL PROTECTED]
> > http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs
> >
> >
> _______________________________________________
> Devl mailing list
> [email protected]
> http://emu.freenetproject.org/cgi-bin/mailman/listinfo/devl
signature.asc
Description: Digital signature
_______________________________________________ Devl mailing list [email protected] http://emu.freenetproject.org/cgi-bin/mailman/listinfo/devl
