diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-08-29 11:33:05 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-08-29 11:33:05 -0400 |
commit | 4144b4552b00c25eba9be7a959aa75c1efbe4a18 (patch) | |
tree | a8d4f9955c3716dc10d8835835d2a3f4dad3fac4 /changes | |
parent | b45f0f8fb9b11effcd48159c078f09a3fbc04b11 (diff) | |
download | tor-4144b4552b00c25eba9be7a959aa75c1efbe4a18.tar.gz tor-4144b4552b00c25eba9be7a959aa75c1efbe4a18.zip |
Always event_del() connection events before freeing them
Previously, we had done this only in the connection_free() case, but
when we called connection_free_() directly from
connections_free_all(), we didn't free the connections.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug12985 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug12985 b/changes/bug12985 new file mode 100644 index 0000000000..dc14cdd375 --- /dev/null +++ b/changes/bug12985 @@ -0,0 +1,4 @@ + o Minor bugfixes (shutdown): + - When shutting down, always call event_del() on lingering read or + write events before freeing them. Fixes bug 12985; bugfix on + 0.1.0.2-rc. |