summaryrefslogtreecommitdiffstats
path: root/src/sss_client
diff options
context:
space:
mode:
authorJan Zeleny <jzeleny@redhat.com>2012-03-07 07:35:26 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-03-09 14:17:12 -0500
commitf646a0653964eb76b59c2881930687068c752b09 (patch)
tree2f35ebb94d550db88633fe5cab14819e00ae6985 /src/sss_client
parentb6a8bdebb40a63d2adc50c574fee88229d1e8f3d (diff)
downloadsssd_unused-f646a0653964eb76b59c2881930687068c752b09.tar.gz
sssd_unused-f646a0653964eb76b59c2881930687068c752b09.tar.xz
sssd_unused-f646a0653964eb76b59c2881930687068c752b09.zip
Fixed uninitialized pointer in SSH known host proxy
Diffstat (limited to 'src/sss_client')
-rw-r--r--src/sss_client/ssh/sss_ssh_knownhostsproxy.c2
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;