diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-01-05 16:02:43 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-01-05 16:02:43 -0500 |
commit | 31d6659d974800e972af43856405e8a7abe08f72 (patch) | |
tree | d971ce07d4ebd1f0da6bdf5e13cc536135b8b38a /changes | |
parent | 69771bb5fc0fc472436c5f3fe6dfd3bd0f4929da (diff) | |
download | tor-31d6659d974800e972af43856405e8a7abe08f72.tar.gz tor-31d6659d974800e972af43856405e8a7abe08f72.zip |
Fix a double-counting bug in addrmap_get_virtual_address
We were decrementing "available" twice for each in-use address we ran
across. This would make us declare that we ran out of virtual
addresses when the address space was only half full.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug2328 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug2328 b/changes/bug2328 new file mode 100644 index 0000000000..e5ce492a82 --- /dev/null +++ b/changes/bug2328 @@ -0,0 +1,4 @@ + o Minor bugfixes + - Fix a bug where we would declare that we had run out of virtual + addresses when the address space was only half-exhausted. Bugfix + on 0.1.1.19-rc. |