Kurt Godwin

Results 4 issues of Kurt Godwin

When constructing a connection to a server, and the server is not responsive, the socket is not closed in a timely fashion and can cause a secondary exception when cleaning...

this fixes issue #402 Thanks for submitting a PR, your contribution is really appreciated! Here's a quick checklist that should be present in PRs: - [ ] Make sure to...

txtuid and txtgid are used out of scope and can create undefined behavior. Changed to use malloc.

https://github.com/lxc/lxc/blob/6f689337192081cbac49e43d59a186ea3b5d86ad/src/lxc/lxccontainer.c#L1582C3-L1582C9 execvp uses newargv, which contains a pointer to txtuid and txtpid which left scope on the line above this. these variables should be removed and use malloc to allocate...