Skip to content

Commit 8efe020

Browse files
committed
Fix for a missing NULL assignment in ssh-agent. Found through appVerifier
1 parent f5226a3 commit 8efe020

File tree

2 files changed

+262
-261
lines changed

2 files changed

+262
-261
lines changed

contrib/win32/win32compat/ssh-agent/agent.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ agent_listen_loop() {
194194
verbose("Failed to create child process %ls ERROR:%d", module_path, GetLastError());
195195
}
196196
else {
197-
debug("spawned child %d ", pi.dwProcessId);
197+
debug("spawned worker %d for agent client pid %d ", pi.dwProcessId, client_pid);
198198
CloseHandle(pi.hProcess);
199199
CloseHandle(pi.hThread);
200200
}

0 commit comments

Comments
 (0)