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
I've been trying to compile and link winpty library statically, using CLANG, for our C++ framework. (I can confirm that it works with very trivial modifications, by the way.)
There is only one issue we have encountered so far: a memory leak that is happening consistently at every exit of our app. Upon a closer examination we have noticed that the global debug configuration variable g_debugConfig (declared in DebugClient.cc) is leaking, since the last instance of it is never actually freed. (see GetDebugConfig())
Hi,
Thank you for developing this library.
I've been trying to compile and link winpty library statically, using CLANG, for our C++ framework. (I can confirm that it works with very trivial modifications, by the way.)
There is only one issue we have encountered so far: a memory leak that is happening consistently at every exit of our app. Upon a closer examination we have noticed that the global debug configuration variable
g_debugConfig
(declared inDebugClient.cc
) is leaking, since the last instance of it is never actually freed. (seeGetDebugConfig()
)Leaked variable:
winpty/src/shared/DebugClient.cc
Line 35 in 7e59fe2
The text was updated successfully, but these errors were encountered: