Explorar el Código

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
Karl DeBisschop hace 23 años
padre
commit
3c9fc747fc
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      plugins/check_http.c

+ 1 - 1
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 ();