Author: toad
Date: 2005-11-12 02:39:13 +0000 (Sat, 12 Nov 2005)
New Revision: 7536
Modified:
trunk/freenet/src/freenet/node/Version.java
trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java
Log:
175:
Fix bug in recent DLL paranoia changes.
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2005-11-12 02:35:45 UTC (rev
7535)
+++ trunk/freenet/src/freenet/node/Version.java 2005-11-12 02:39:13 UTC (rev
7536)
@@ -20,10 +20,10 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- public static final int buildNumber = 174;
+ public static final int buildNumber = 175;
/** Oldest build of Fred we will talk to */
- public static final int lastGoodBuild = 174;
+ public static final int lastGoodBuild = 175;
/** The highest reported build of fred */
public static int highestSeenBuild = buildNumber;
Modified: trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java
===================================================================
--- trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java 2005-11-12
02:35:45 UTC (rev 7535)
+++ trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java 2005-11-12
02:39:13 UTC (rev 7536)
@@ -226,6 +226,7 @@
i.setNext(null);
i.setPrev(null);
--size;
+ i.setParent(null);
return i;
}