openbsd-ports/www/clearsilver/patches/patch-cgi_html_c
fkr 65053c6253 update to version 0.10.3
ok mbalmer@, markus@ (maintainer)
2006-05-15 17:08:43 +00:00

13 lines
427 B
Plaintext

$OpenBSD: patch-cgi_html_c,v 1.2 2006/05/15 17:08:43 fkr Exp $
--- cgi/html.c.orig Thu Dec 1 05:03:09 2005
+++ cgi/html.c Mon May 8 16:54:19 2006
@@ -392,7 +392,7 @@ static NEOERR *split_and_convert (const
"Unable to allocate memory to convert url");
break;
}
- strcpy(url, "http://");
+ strlcpy(url, "http://", url_len + 1);
strncat(url, src + x, parts[i].end - x - suffix);
}
else