Changeset 4521156
- Timestamp:
- May 31, 2015 12:43:06 PM (6 years ago)
- Branches:
- master
- Children:
- 3c89bd4
- Parents:
- c58fd8f
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
core/java/src/net/i2p/util/FortunaRandomSource.java
rc58fd8f r4521156 263 263 @Override 264 264 public void feedEntropy(String source, byte[] data, int offset, int len) { 265 synchronized(_fortuna) { 266 _fortuna.addRandomBytes(data, offset, len); 265 try { 266 synchronized(_fortuna) { 267 _fortuna.addRandomBytes(data, offset, len); 268 } 269 } catch (Exception e) { 270 // AIOOBE seen, root cause unknown, ticket #1576 271 Log log = _context.logManager().getLog(FortunaRandomSource.class); 272 log.warn("feedEntropy()", e); 267 273 } 268 274 } -
history.txt
rc58fd8f r4521156 1 2015-05-31 zzz 2 * Fortuna: Catch AIOOBE (ticket #1576) 3 1 4 2015-05-30 zzz 2 5 * i2ptunnel: Fix +/- variance config (ticket #1587) -
router/java/src/net/i2p/router/RouterVersion.java
rc58fd8f r4521156 19 19 public final static String ID = "Monotone"; 20 20 public final static String VERSION = CoreVersion.VERSION; 21 public final static long BUILD = 3 3;21 public final static long BUILD = 34; 22 22 23 23 /** for example "-test" */
Note: See TracChangeset
for help on using the changeset viewer.