Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
PTs expect the auth cookie to be available immedieately after launch,
leading to a race condition when PTs opt to cache the extorport cookie
once immediately after startup.
Fixes #15240.
|
|
|
|
|
|
|
|
Fixes bug 15245; bugfix on 0.2.6.3-alpha. Thanks to anonym for reporting!
|
|
|
|
When calling pthread_attr_setdetachstate, we were using 1 as the
argument. But the pthreads documentation says that you have to say
PTHREAD_CREATE_DETACH, which on Solaris is apparently 0x40. Calling
pthread_attr_setdetachstate with 1 crashes on Solaris with FLTBOUNDS.
(Because we're so late in the release cycle, I made the code define
PTHREAD_CREATE_DETACHED if it doesn't exist, so we aren't likely to
break any other platforms.)
This bug was introduced when we made threading mandatory in
0.2.6.1-alpha; previously, we had force-disabled threading on
Solaris. See #9495 discussion.
|
|
|
|
Closes ticket 15212
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
There is a bug in the overlap-checking in strlcat that can crash Tor
servers. Fixes bug 15205; this is an OSX bug, not a Tor bug.
|
|
|
|
|
|
Closes 14128; useful to regain functionality lost because of 13988.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit 930ab95e1fb0dfd5af35e7d84ca58ff21b65a605.
|
|
|
|
|
|
|
|
Fixes bug 15064; bugfix on 0.2.5.4-alpha.
|
|
|
|
|
|
fixes bug 15088. patch from sanic.
|
|
|
|
|
|
|
|
|
|
|