* NTCP: Fix startup race NPE
This commit is contained in:
@ -1,3 +1,6 @@
|
||||
2009-06-09 zzz
|
||||
* NTCP: Fix startup race NPE (thanks postman!)
|
||||
|
||||
2009-06-08 sponge
|
||||
* Last commit for this cycle. All debugging except for WARN removed.
|
||||
I can use the visit command to debug now anyway.
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 18;
|
||||
public final static long BUILD = 19;
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "-rc";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
|
@ -42,7 +42,8 @@ public class NTCPSendFinisher {
|
||||
}
|
||||
|
||||
public void stop() {
|
||||
_executor.shutdownNow();
|
||||
if (_executor != null)
|
||||
_executor.shutdownNow();
|
||||
}
|
||||
|
||||
public void add(OutNetMessage msg) {
|
||||
|
Reference in New Issue
Block a user