1
I Use This!
Inactive

Commits : Listings

Analyzed 15 days ago. based on code collected 16 days ago.
Jan 29, 2024 — Jan 29, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Avoid leaking file handles in load_openssh_key(), as reported by David Wedderwille. More... over 12 years ago
Fix a controlling-terminal bug reported by Anthony Heading: Cygwin doesn't have TIOCSCTTY, so my attempt to set the ctty of the child process isn't doing anything, and only works by chance when you run bash because bash does the thing that _will_ set the ctty, namely opening the terminal file again without O_NOCTTY. So now we do that too. More... over 12 years ago
Fix a controlling-terminal bug reported by Anthony Heading: Cygwin doesn't have TIOCSCTTY, so my attempt to set the ctty of the child process isn't doing anything, and only works by chance when you run bash because bash does the thing that _will_ set the ctty, namely opening the terminal file again without O_NOCTTY. So now we do that too. More... over 12 years ago
Partially revert r9636. It is true that we can directly return the result of memcmp, but untrue that we can do so _unconditionally_: if memcmp returns zero, we still need to fall through to the next comparison. More... over 12 years ago
Partially revert r9636. It is true that we can directly return the result of memcmp, but untrue that we can do so _unconditionally_: if memcmp returns zero, we still need to fall through to the next comparison. More... over 12 years ago
Clang, like LCC, objects to using '<' and '>' on function pointers.
ben
More... over 12 years ago
Clang, like LCC, objects to using '<' and '>' on function pointers. More... over 12 years ago
Change return type of do_ssh2_transport() to void.
ben
More... over 12 years ago
Change return type of do_ssh2_transport() to void. More... over 12 years ago
Make bombout() less of a macro and more of a function.
ben
More... over 12 years ago
Make bombout() less of a macro and more of a function. More... over 12 years ago
Fix a memory leak in parse_ttymodes() (found by Memcheck/Valgrind).
ben
More... over 12 years ago
Fix a memory leak in parse_ttymodes() (found by Memcheck/Valgrind). More... over 12 years ago
Slightly simplify crFinishFree{,V}.
ben
More... over 12 years ago
Slightly simplify crFinishFree{,V}. More... over 12 years ago
Don't close SSH-2 channels with outstanding channel requests on local error.
ben
More... over 12 years ago
Don't close SSH-2 channels with outstanding channel requests on local error. More... over 12 years ago
It's not legal to free a coroutine's state structure before invoking crFinish or crFinishV, since they will attempt to write to the coroutine state variable contained in that structure. Introduced some new all-in-one macros crFinishFree and crFinishFreeV, and used those instead. Should fix today's report of a crash just after authentication. More... over 12 years ago
It's not legal to free a coroutine's state structure before invoking crFinish or crFinishV, since they will attempt to write to the coroutine state variable contained in that structure. Introduced some new all-in-one macros crFinishFree and crFinishFreeV, and used those instead. Should fix today's report of a crash just after authentication. More... over 12 years ago
Fix markup error introduced in r9626. More... over 12 years ago
Fix markup error introduced in r9626. More... over 12 years ago
Remove documentation for "Out of space for port forwardings" error.
ben
More... over 12 years ago
Remove documentation for "Out of space for port forwardings" error. More... over 12 years ago
Improve window-size handling in Unix Plink.
ben
More... over 12 years ago
Improve window-size handling in Unix Plink. More... over 12 years ago
Better handling of outstanding CHANNEL_REQUESTS on channel destruction.
ben
More... over 12 years ago
Better handling of outstanding CHANNEL_REQUESTS on channel destruction. More... over 12 years ago
Factor out common code to construct CHANNEL_REQUESTS.
ben
More... over 12 years ago
Factor out common code to construct CHANNEL_REQUESTS. More... over 12 years ago
Simplify handling of responses to channel requests.
ben
More... over 12 years ago