From 3c9fc747fc2a06c1fde21168cf08c01f68cd08e7 Mon Sep 17 00:00:00 2001 From: Karl DeBisschop Date: Wed, 5 Feb 2003 05:57:27 +0000 Subject: [PATCH] fix segfault due to bad asprintf invocation git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@289 f882894a-f735-0410-b71e-b25c423dba1c --- plugins/check_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/check_http.c b/plugins/check_http.c index daddfc1..dabe35e 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -920,7 +920,7 @@ int connect_SSL (void) { SSL_METHOD *meth; - asprintf (randbuff, "%s", "qwertyuiopasdfghjkl"); + asprintf (&randbuff, "%s", "qwertyuiopasdfghjkl"); RAND_seed (randbuff, strlen (randbuff)); /* Initialize SSL context */ SSLeay_add_ssl_algorithms (); -- 2.30.2