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
Remove manual memory management and move to RAII when possible
Examples: _data in ResponseImplementation. malloc and free should become std::vector<uint8_t>. https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L44 https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L57 https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L77
_data
ResponseImplementation
malloc
free
std::vector<uint8_t>
The text was updated successfully, but these errors were encountered:
can I try do this? 😁
Sorry, something went wrong.
Consider yourself assigned.
I can't officially assign you cause you're not in the org. But you're still assigned.
No branches or pull requests
Remove manual memory management and move to RAII when possible
Examples:
_data
inResponseImplementation
.malloc
andfree
should becomestd::vector<uint8_t>
.https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L44
https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L57
https://github.com/spotify/NFHTTP/blob/63210526176f2d7ce33a65ffe54c0fa31ac55632/source/ResponseImplementation.cpp#L77
The text was updated successfully, but these errors were encountered: