You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There appears to be a memory leak in the file template_cpp/src/include/parser.hpp. The function getaddrinfo is called at line 65, but its result is not properly freed using freeaddrinfo. According to the POSIX documentation, any memory allocated by getaddrinfo must be released with freeaddrinfo to prevent memory leaks.
I hope this feedback is helpful for improvement.
The text was updated successfully, but these errors were encountered:
There appears to be a memory leak in the file
template_cpp/src/include/parser.hpp
. The functiongetaddrinfo
is called at line 65, but its result is not properly freed usingfreeaddrinfo
. According to the POSIX documentation, any memory allocated bygetaddrinfo
must be released withfreeaddrinfo
to prevent memory leaks.I hope this feedback is helpful for improvement.
The text was updated successfully, but these errors were encountered: