We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that buf only uses 6+len(host) bytes, but space is reserved for 7+len(host)?
buf
6+len(host)
7+len(host)
btcd/connmgr/tor.go
Lines 79 to 86 in f86ae60
The text was updated successfully, but these errors were encountered:
reduce redundant memory allocatio - resolves btcsuite#1699
f494b4c
Signed-off-by: Tomasz Ziolkowski <[email protected]>
780cc08
Revert "reduce redundant memory allocatio - resolves btcsuite#1699"
342f4f8
This reverts commit 780cc08.
Merge pull request #1804 from Crypt-iQ/tor_resolver_fix
0742662
Revert "reduce redundant memory allocatio - resolves #1699"
a8ad257
Successfully merging a pull request may close this issue.
It seems that
buf
only uses6+len(host)
bytes, but space is reserved for7+len(host)
?btcd/connmgr/tor.go
Lines 79 to 86 in f86ae60
The text was updated successfully, but these errors were encountered: