diff options
author | Jan Zeleny <jzeleny@redhat.com> | 2012-03-07 07:35:26 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-03-09 14:17:12 -0500 |
commit | f646a0653964eb76b59c2881930687068c752b09 (patch) | |
tree | 2f35ebb94d550db88633fe5cab14819e00ae6985 /src | |
parent | b6a8bdebb40a63d2adc50c574fee88229d1e8f3d (diff) | |
download | sssd-f646a0653964eb76b59c2881930687068c752b09.tar.gz sssd-f646a0653964eb76b59c2881930687068c752b09.tar.bz2 sssd-f646a0653964eb76b59c2881930687068c752b09.zip |
Fixed uninitialized pointer in SSH known host proxy
Diffstat (limited to 'src')
-rw-r--r-- | src/sss_client/ssh/sss_ssh_knownhostsproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sss_client/ssh/sss_ssh_knownhostsproxy.c b/src/sss_client/ssh/sss_ssh_knownhostsproxy.c index 9dae3cb6..280532b6 100644 --- a/src/sss_client/ssh/sss_ssh_knownhostsproxy.c +++ b/src/sss_client/ssh/sss_ssh_knownhostsproxy.c @@ -199,7 +199,7 @@ connect_proxy_command(char **args) int main(int argc, const char **argv) { - TALLOC_CTX *mem_ctx; + TALLOC_CTX *mem_ctx = NULL; int pc_debug = SSSDBG_DEFAULT; const char *pc_port = "22"; const char *pc_domain = NULL; |